mirror of
https://github.com/Karaka-Management/cssOMS.git
synced 2026-01-11 11:18:39 +00:00
many small fixes
This commit is contained in:
parent
f7aff239fb
commit
228bc31e9b
|
|
@ -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 {
|
||||||
|
|
|
||||||
|
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
10
grid.scss
10
grid.scss
|
|
@ -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;
|
||||||
|
|
|
||||||
13
input.scss
13
input.scss
|
|
@ -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;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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 {
|
||||||
|
|
|
||||||
379
styles.css
379
styles.css
File diff suppressed because it is too large
Load Diff
|
|
@ -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);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -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>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user