mirror of
https://github.com/SinTan1729/chhoto-url
synced 2024-12-27 16:08:37 -06:00
Compare commits
3 commits
b0603f62b4
...
5a5a1bc775
Author | SHA1 | Date | |
---|---|---|---|
5a5a1bc775 | |||
b66086be38 | |||
3be2862e9f |
3 changed files with 21 additions and 3 deletions
2
actix/Cargo.lock
generated
2
actix/Cargo.lock
generated
|
@ -475,7 +475,7 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "chhoto-url"
|
name = "chhoto-url"
|
||||||
version = "5.0.6"
|
version = "5.0.7"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"actix-files",
|
"actix-files",
|
||||||
"actix-session",
|
"actix-session",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "chhoto-url"
|
name = "chhoto-url"
|
||||||
version = "5.0.6"
|
version = "5.0.7"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
authors = ["Sayantan Santra <sayantan[dot]santra689[at]gmail[dot]com"]
|
authors = ["Sayantan Santra <sayantan[dot]santra689[at]gmail[dot]com"]
|
||||||
license = "mit"
|
license = "mit"
|
||||||
|
|
|
@ -29,13 +29,20 @@ table tr td div {
|
||||||
}
|
}
|
||||||
|
|
||||||
td[name="deleteBtn"] {
|
td[name="deleteBtn"] {
|
||||||
text-align: center;
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
td[name="deleteBtn"] button {
|
td[name="deleteBtn"] button {
|
||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
|
aspect-ratio: 1;
|
||||||
border-style: solid;
|
border-style: solid;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
font-weight: bold;
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -84,6 +91,10 @@ dialog form {
|
||||||
/* Settings for mobile devices */
|
/* Settings for mobile devices */
|
||||||
@media (pointer:none),
|
@media (pointer:none),
|
||||||
(pointer:coarse) {
|
(pointer:coarse) {
|
||||||
|
.container {
|
||||||
|
max-width: 100vw;
|
||||||
|
}
|
||||||
|
|
||||||
.pure-control-group input {
|
.pure-control-group input {
|
||||||
width: 98%;
|
width: 98%;
|
||||||
}
|
}
|
||||||
|
@ -98,6 +109,7 @@ dialog form {
|
||||||
|
|
||||||
table td {
|
table td {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
justify-content: left !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
table td::before {
|
table td::before {
|
||||||
|
@ -108,7 +120,13 @@ dialog form {
|
||||||
text-align: left;
|
text-align: left;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
td[name="deleteBtn"] button {
|
||||||
|
border-radius: 50%;
|
||||||
|
aspect-ratio: 1;
|
||||||
|
}
|
||||||
|
|
||||||
.pure-table caption {
|
.pure-table caption {
|
||||||
padding-top: 0px;
|
padding-top: 0px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue