1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-07-24 07:39:43 +02:00

Implement new refactored color scheme

This commit is contained in:
Harvey Kandola 2018-12-04 17:26:57 +00:00
parent da0861b3fd
commit d7a46ceee6
70 changed files with 934 additions and 521 deletions

View file

@ -3,7 +3,7 @@
margin: 0 0 25px 0;
width: 100%;
font-size: 1rem;
border: 1px solid $color-border;
border: 1px solid map-get($gray-shades, 300);
border-radius: 2px;
border-collapse: collapse;
@ -19,35 +19,35 @@
> thead {
> tr {
background-color: $color-off-white;
background-color: map-get($gray-shades, 100);
> th {
vertical-align: top;
text-align: left;
font-weight: bold;
padding: 10px;
border-bottom: 1px solid $color-border;
border-bottom: 1px solid map-get($gray-shades, 300);
}
}
}
.bordered {
border: 1px solid $color-border;
border: 1px solid map-get($gray-shades, 300);
}
.border-top {
border-top: 1px solid $color-border;
border-top: 1px solid map-get($gray-shades, 300);
}
.border-bottom {
border-bottom: 1px solid $color-border;
border-bottom: 1px solid map-get($gray-shades, 300);
}
.action-link {
font-size: 0.8rem;
margin-left: 5px;
}
.no-width {
white-space: nowrap;
width: 1%;