Skip to content

Commit 7d2c69f

Browse files
committed
New UI for forms. Less aggressive
1 parent 5e238e2 commit 7d2c69f

File tree

1 file changed

+15
-12
lines changed

1 file changed

+15
-12
lines changed

stack/css/stack.css

Lines changed: 15 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -805,14 +805,10 @@ th {
805805
padding: 1ch;
806806
padding-top: .5rem;
807807
padding-bottom: .5rem;
808-
border-radius: var(--border-radius);
809808
margin-bottom: 1ch;
810-
color: var(--dark-main-color);
811-
border: 1px solid var(--dark-main-color);
812-
border-bottom: 3px solid var(--dark-main-color);
813-
box-shadow: 0 0 0 0px rgb(0 0 0 / 0%);
814809
transition: box-shadow .1s ease-in-out 0s;
815-
background-color: var(--background-color);
810+
background-color: rgba(0, 0, 0, 0.06);
811+
border-bottom: 1px solid var(--dark-main-color);
816812
}
817813

818814
@media (min-width:768px) {
@@ -830,17 +826,17 @@ th {
830826
.button, [type="submit"],.button-red,.bigbutton {
831827
display: inline-block;
832828
background-color: var(--dark-main-color);
833-
border-radius: var(--border-radius);
834829
border: 1px solid var(--dark-main-color);
835830
color: var(--background-color);
836831
cursor: pointer;
837832
padding-top: .5rem;
838833
padding-bottom: .5rem;
839-
padding-left: 2ch;
840-
padding-right: 2ch;
834+
padding-left: 1ch;
835+
padding-right: 1ch;
841836
margin-bottom: var(--normal-margin);
842837
transition: background 100ms ease-in-out 0s,color 100ms ease-in-out 0s;
843838
text-decoration: none;
839+
border-radius: .4rem;
844840
}
845841

846842
@media (min-width:768px) {
@@ -1330,7 +1326,6 @@ a:hover .svg-fill {
13301326
#linklist {
13311327
flex-grow: 1;
13321328
padding-bottom: .5rem;
1333-
margin-top: var(--normal-margin);
13341329

13351330
}
13361331

@@ -1372,7 +1367,7 @@ a:hover .svg-fill {
13721367
}
13731368

13741369
.s_medium_post .linklist-link,.s_large_post .linklist-link {
1375-
font-weight: bold;
1370+
/* font-weight: bold;*/
13761371
}
13771372

13781373
#linklist .url-display {
@@ -2353,7 +2348,7 @@ right: 3vw;
23532348
}
23542349
}
23552350

2356-
@media (prefers-color-scheme: dark) {
2351+
@media (prefers-color-scheme: light) {
23572352
:root {
23582353
--dark-main-color: white;
23592354
--background-color: #040404a6;
@@ -2364,5 +2359,13 @@ right: 3vw;
23642359
color: unset;
23652360
}
23662361

2362+
[type="url"], [type="text"], [type="password"], textarea, .toolbar-plugin [type="text"] {
2363+
background-color: rgba(139, 139, 139, 0.27);
2364+
border-bottom: 1px solid black;
2365+
color: unset;
2366+
2367+
2368+
}
2369+
23672370

23682371
}

0 commit comments

Comments
 (0)