many small fixes

This commit is contained in:
Dennis Eichhorn 2023-02-10 18:20:57 +01:00
parent f7aff239fb
commit 228bc31e9b
8 changed files with 174 additions and 242 deletions

View File

@ -31,10 +31,6 @@ button, input[type="submit"], input[type="button"], label.button, a.button {
&:hover, &:focus { &:hover, &:focus {
background: var(--button-colored-background-hover); background: var(--button-colored-background-hover);
} }
i {
margin: 0 .5rem 0 0;
}
} }
button.save, .button.save, input[type="submit"].save { button.save, .button.save, input[type="submit"].save {

View File

@ -13,7 +13,7 @@ form {
} }
label { label {
font-size: 1rem; font-size: .9rem;
color: rgba(0, 0, 0, 80); color: rgba(0, 0, 0, 80);
} }

View File

@ -11,6 +11,16 @@
flex-wrap: wrap; flex-wrap: wrap;
} }
.col-simple {
display: flex;
flex: 1;
flex-direction: column;
.row {
flex: 1 1 auto;
}
}
.col { .col {
box-sizing: border-box; box-sizing: border-box;
display: flex; display: flex;

View File

@ -1,7 +1,13 @@
input, select, textarea, .textarea, option {
font-family: var(--font-family);
font-weight: 300;
}
input, select, textarea, .textarea { input, select, textarea, .textarea {
border: 1px solid var(--input-border); border: 1px solid var(--input-border);
&.undecorated { &.undecorated {
padding: 0;
border: none; border: none;
background: transparent; background: transparent;
resize: none; resize: none;
@ -264,15 +270,12 @@ input[type="file"] {
} }
input::placeholder { input::placeholder {
font-family: 'FontAwesome', serif;
color: var(--input-icon-color); color: var(--input-icon-color);
opacity: 0.5; opacity: 0.5;
} }
input::placeholder { textarea:invalid, input:invalid {
font-family: 'FontAwesome', serif;
}
input:invalid {
transition: all 0.5s; transition: all 0.5s;
border-color: #f00; border-color: #f00;

View File

@ -31,6 +31,10 @@
.portlet-body > h2 { .portlet-body > h2 {
border-bottom: 1px solid #ebedf2; border-bottom: 1px solid #ebedf2;
} }
.portlet-separator {
border-bottom: 1px solid #ebedf2;
}
} }
.plain-portlet { .plain-portlet {

File diff suppressed because it is too large Load Diff

View File

@ -67,7 +67,7 @@ table.default {
overflow-x: auto; overflow-x: auto;
tbody { tbody {
:not(.tag) > .fa { .order-up, .order-down, .remove-form, .update-form, .save-form {
color: var(--button-colored-background); color: var(--button-colored-background);
} }
} }

View File

@ -4,7 +4,7 @@
<div class="portlet-body"> <div class="portlet-body">
<span class="tag">Test Tag</span> <span class="tag">Test Tag</span>
<span class="tag"><i class="fa fa-lightbulb-o"></i>Test Tag</span> <span class="tag"><i class="fa fa-lightbulb-o"></i>Test Tag</span>
<span class="tag"><i class="fa fa-times"></i><i class="fa fa-lightbulb-o"></i>Test Tag</span> <span class="tag"><i class="fa fa-times close"></i><i class="fa fa-lightbulb-o"></i>Test Tag</span>
</div> </div>
</section> </section>
</div> </div>