improve input, button, tables

This commit is contained in:
Dennis Eichhorn 2023-05-24 18:09:09 +00:00
parent 2848b638a3
commit 4bb392ac05
9 changed files with 260 additions and 249 deletions

View File

@ -34,4 +34,8 @@
.overflowfix { .overflowfix {
overflow: auto; overflow: auto;
}
.nowrap {
white-space: nowrap;
} }

View File

@ -1,4 +1,4 @@
.btn { .btn, .link {
cursor: pointer; cursor: pointer;
user-select: none; user-select: none;
} }
@ -34,6 +34,15 @@ button, input[type="submit"], input[type="button"], label.button, a.button {
} }
} }
button.save, .button.save, input[type="submit"].save {
color: rgba(0, 0, 0, 0.75);
background: var(--button-colored-background);
&:hover, &:focus {
background: var(--button-colored-background);
}
}
button.save, .button.save, input[type="submit"].save { button.save, .button.save, input[type="submit"].save {
color: rgba(0, 0, 0, 0.75); color: rgba(0, 0, 0, 0.75);
background: #8fff79; background: #8fff79;
@ -69,3 +78,19 @@ button.disabled, .button.disabled, input[type="submit"].disabled {
background: #e1e1e1; background: #e1e1e1;
} }
} }
.link.default {
color: var(--button-colored-background);
}
.link.save {
color: #8fff79;
}
.link.cancel {
color: #ee5649;
}
.link.close {
color: #fffc3e;
}
.link.disabled {
color: #e1e1e1;
}

View File

@ -1,4 +1,5 @@
code[contenteditable] { code[contenteditable], .contenteditable {
display: block; display: block;
outline: none; outline: none;
white-space: pre-wrap;
} }

View File

@ -63,7 +63,7 @@ form {
} }
} }
textarea { textarea, .contenteditable {
height: 8rem; height: 8rem;
} }
} }

View File

@ -46,7 +46,7 @@
.md-hidden, .md-hidden,
.lg-hidden .lg-hidden
{ {
display: hidden; display: none;
} }
.col-xs-0 { .col-xs-0 {
@ -205,6 +205,10 @@
text-align: center; text-align: center;
} }
.right-xs {
margin-left: auto !important;
}
.end-xs { .end-xs {
justify-content: flex-end; justify-content: flex-end;
text-align: end; text-align: end;
@ -240,7 +244,7 @@
@media only screen and (min-width: 48em) { @media only screen and (min-width: 48em) {
.sm-hidden { .sm-hidden {
display: inherit; display: block;
} }
.container { .container {
@ -425,7 +429,7 @@
@media only screen and (min-width: 62em) { @media only screen and (min-width: 62em) {
.md-hidden { .md-hidden {
display: inherit; display: block;
} }
.container { .container {
@ -610,7 +614,7 @@
@media only screen and (min-width: 75em) { @media only screen and (min-width: 75em) {
.lg-hidden { .lg-hidden {
display: inherit; display: block;
} }
.container { .container {

View File

@ -3,6 +3,22 @@ input, select, textarea, .textarea, option {
font-weight: 300; font-weight: 300;
} }
input[type=checkbox] ~ .checked-visibility {
display: none;
}
input[type=checkbox]:checked ~ .checked-visibility {
display: inline-block;
}
input[type=checkbox] ~ .checked-visibility-alt {
display: inline-block;
}
input[type=checkbox]:checked ~ .checked-visibility-alt {
display: none;
}
input, select, textarea, .textarea { input, select, textarea, .textarea {
border: 1px solid var(--input-border); border: 1px solid var(--input-border);

View File

@ -26,6 +26,12 @@
//border-bottom-right-radius: 4px; //border-bottom-right-radius: 4px;
border-top: 1px solid #ebedf2; border-top: 1px solid #ebedf2;
padding: .7rem 1rem .7rem 1rem; padding: .7rem 1rem .7rem 1rem;
box-sizing: border-box;
display: flex;
flex: 0 1 auto;
flex-direction: row;
flex-wrap: wrap;
column-gap: .5rem;
} }
.portlet-body > h2 { .portlet-body > h2 {
@ -45,7 +51,7 @@
.portlet-body { .portlet-body {
background: #fff; background: #fff;
padding: .7rem 1rem .7rem 1rem; padding: 1rem;
//border-top-left-radius: 4px; //border-top-left-radius: 4px;
//border-top-right-radius: 4px; //border-top-right-radius: 4px;

File diff suppressed because it is too large Load Diff

View File

@ -58,6 +58,10 @@ table.default.sticky {
} }
} }
.order-up, .order-down, .remove-form, .update-form, .save-form, .form-action {
color: var(--button-colored-background);
}
table.default { table.default {
//border-radius: 4px; //border-radius: 4px;
width: 100%; width: 100%;
@ -66,12 +70,6 @@ table.default {
box-sizing: border-box; box-sizing: border-box;
overflow-x: auto; overflow-x: auto;
tbody {
.order-up, .order-down, .remove-form, .update-form, .save-form {
color: var(--button-colored-background);
}
}
caption { caption {
font-size: 1.5rem; font-size: 1.5rem;
font-weight: 400; font-weight: 400;