mirror of
https://github.com/Karaka-Management/cssOMS.git
synced 2026-02-15 01:08:39 +00:00
make styles less gummy bear like
This commit is contained in:
parent
60259ffad2
commit
912b81b297
2
nav.scss
2
nav.scss
|
|
@ -142,7 +142,7 @@ body > nav {
|
||||||
|
|
||||||
> li {
|
> li {
|
||||||
> a {
|
> a {
|
||||||
box-shadow: 0 0 10px 3px rgba(90, 71, 114, 0.1);
|
box-shadow: 0 0 3px 1px rgba(90, 71, 114, 0.3);
|
||||||
margin-right: .5rem;
|
margin-right: .5rem;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
padding: 10px 10px;
|
padding: 10px 10px;
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,9 @@
|
||||||
.portlet {
|
.portlet {
|
||||||
box-shadow: 0 0 5px 1px rgba(72, 71, 114, 0.2);
|
box-shadow: 0 0 3px 1px rgba(72, 71, 114, 0.3);
|
||||||
border-radius: 4px;
|
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
margin-top: 1rem;
|
margin-top: 1rem;
|
||||||
//overflow-x: auto; removed in order to prevent scroll bars for tooltips which are longer than the portlet (test in general settings view)
|
//overflow-x: auto; removed in order to prevent scroll bars for tooltips which are longer than the portlet (test in general settings view)
|
||||||
border-top: 3px solid var(--box-highlight);
|
//border-top: 2px solid var(--box-highlight);
|
||||||
|
|
||||||
.portlet-head {
|
.portlet-head {
|
||||||
background: #fff;
|
background: #fff;
|
||||||
|
|
|
||||||
|
|
@ -17,8 +17,7 @@
|
||||||
|
|
||||||
section.box {
|
section.box {
|
||||||
background: #fff;
|
background: #fff;
|
||||||
box-shadow: 0 0 7px 3px rgba(90, 71, 114, 0.1);
|
box-shadow: 0 0 3px 1px rgba(90, 71, 114, 0.3);
|
||||||
border-radius: 4px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
section {
|
section {
|
||||||
|
|
|
||||||
391
styles.css
391
styles.css
File diff suppressed because it is too large
Load Diff
1
tab.scss
1
tab.scss
|
|
@ -7,6 +7,7 @@
|
||||||
font-size: 0.9em;
|
font-size: 0.9em;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
border: 1px solid var(--button-colored-background-hover);
|
||||||
|
|
||||||
&:hover, &:focus {
|
&:hover, &:focus {
|
||||||
color: var(--text-on-background-color-2);
|
color: var(--text-on-background-color-2);
|
||||||
|
|
|
||||||
14
table.scss
14
table.scss
|
|
@ -2,12 +2,6 @@
|
||||||
|
|
||||||
table.fixed {
|
table.fixed {
|
||||||
table-layout: fixed;
|
table-layout: fixed;
|
||||||
|
|
||||||
td {
|
|
||||||
overflow: hidden;
|
|
||||||
white-space: nowrap;
|
|
||||||
text-overflow: ellipsis;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
table:not([id]) > thead .sort-asc, table:not([id]) > thead .sort-desc {
|
table:not([id]) > thead .sort-asc, table:not([id]) > thead .sort-desc {
|
||||||
|
|
@ -23,6 +17,14 @@ table .sort-asc, table .sort-desc, table .filter {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@for $i from 1 through 10 {
|
||||||
|
.fixed-#{$i} td:nth-child(#{$i}) {
|
||||||
|
overflow: hidden;
|
||||||
|
white-space: nowrap;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
table.default {
|
table.default {
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user