mirror of
https://github.com/Karaka-Management/cssOMS.git
synced 2026-01-11 03:08:41 +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 {
|
||||
background: var(--button-colored-background-hover);
|
||||
}
|
||||
|
||||
i {
|
||||
margin: 0 .5rem 0 0;
|
||||
}
|
||||
}
|
||||
|
||||
button.save, .button.save, input[type="submit"].save {
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@ form {
|
|||
}
|
||||
|
||||
label {
|
||||
font-size: 1rem;
|
||||
font-size: .9rem;
|
||||
color: rgba(0, 0, 0, 80);
|
||||
}
|
||||
|
||||
|
|
|
|||
10
grid.scss
10
grid.scss
|
|
@ -11,6 +11,16 @@
|
|||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.col-simple {
|
||||
display: flex;
|
||||
flex: 1;
|
||||
flex-direction: column;
|
||||
|
||||
.row {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
}
|
||||
|
||||
.col {
|
||||
box-sizing: border-box;
|
||||
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 {
|
||||
border: 1px solid var(--input-border);
|
||||
|
||||
&.undecorated {
|
||||
padding: 0;
|
||||
border: none;
|
||||
background: transparent;
|
||||
resize: none;
|
||||
|
|
@ -264,15 +270,12 @@ input[type="file"] {
|
|||
}
|
||||
|
||||
input::placeholder {
|
||||
font-family: 'FontAwesome', serif;
|
||||
color: var(--input-icon-color);
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
||||
input::placeholder {
|
||||
font-family: 'FontAwesome', serif;
|
||||
}
|
||||
|
||||
input:invalid {
|
||||
textarea:invalid, input:invalid {
|
||||
transition: all 0.5s;
|
||||
border-color: #f00;
|
||||
|
||||
|
|
|
|||
|
|
@ -31,6 +31,10 @@
|
|||
.portlet-body > h2 {
|
||||
border-bottom: 1px solid #ebedf2;
|
||||
}
|
||||
|
||||
.portlet-separator {
|
||||
border-bottom: 1px solid #ebedf2;
|
||||
}
|
||||
}
|
||||
|
||||
.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;
|
||||
|
||||
tbody {
|
||||
:not(.tag) > .fa {
|
||||
.order-up, .order-down, .remove-form, .update-form, .save-form {
|
||||
color: var(--button-colored-background);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
<div class="portlet-body">
|
||||
<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-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>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user