-
Notifications
You must be signed in to change notification settings - Fork 404
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
185 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
$thead-bg-color-1: lighten(#2C394F, 18%); | ||
$thead-bg-color-2: lighten(#2C394F, 16%); | ||
|
||
$text-color: #dae2f0; | ||
$text-color-td: rgb(73, 81, 94); | ||
$text-shadow-color: lighten(#2C394F, 10%); | ||
|
||
$secondary-text-color: rgb(152, 165, 185) ; | ||
$border-color: #435169; | ||
$border-color-td: #bbc5d6; | ||
$input-border-color: $border-color; | ||
|
||
$table-bg: #dfe5ee; | ||
$highlight-color: #445168; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,142 @@ | ||
@import './overrides'; | ||
// suggested by wifey | ||
.vgt-table.black-rhino{ | ||
border: 1px solid $border-color; | ||
background-color: $table-bg; | ||
|
||
& tr.clickable { | ||
&:hover{ | ||
background-color: $highlight-color; | ||
} | ||
} | ||
|
||
// td | ||
& td { | ||
border-bottom: 1px solid $border-color-td; | ||
color: $text-color-td; | ||
} | ||
|
||
//th | ||
& th.line-numbers { | ||
color: $text-color; | ||
border-right: 1px solid $border-color; | ||
background: linear-gradient($thead-bg-color-1, $thead-bg-color-2); | ||
} | ||
thead th{ | ||
color: $text-color; | ||
text-shadow: 1px 2px $text-shadow-color; | ||
border-bottom: 1px solid $border-color; | ||
background: linear-gradient($thead-bg-color-1, $thead-bg-color-2); | ||
&.sorting-asc, &.sorting-desc { | ||
color: lighten($text-color, 15%); | ||
} | ||
} | ||
|
||
//bordered | ||
&.bordered td { | ||
border: 1px solid $border-color-td; | ||
} | ||
|
||
&.bordered th { | ||
border: 1px solid $border-color; | ||
} | ||
|
||
//input | ||
.vgt-input, .vgt-select{ | ||
color: $text-color; | ||
background-color: lighten($thead-bg-color-2, 25%); | ||
border: 1px solid $input-border-color; | ||
&::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */ | ||
color: $text-color; | ||
opacity: 0.7; /* Firefox */ | ||
} | ||
} | ||
} | ||
|
||
.vgt-wrap.black-rhino{ | ||
.vgt-wrap__footer{ | ||
color: $text-color; | ||
border: 1px solid $border-color; | ||
background: linear-gradient($thead-bg-color-1, $thead-bg-color-2); | ||
.footer__row-count{ | ||
position: relative; | ||
padding-right: 3px; | ||
&__label{ | ||
color: $secondary-text-color; | ||
} | ||
&__select{ | ||
color: $text-color-td; | ||
background: $table-bg; | ||
border: none; | ||
-webkit-appearance: none; | ||
-moz-appearance: none; | ||
appearance: none; | ||
padding-right: 15px; | ||
padding-left: 5px; | ||
border-radius: 3px; | ||
&::-ms-expand{ | ||
display: none; | ||
} | ||
&:focus{ | ||
border-color: $link-color; | ||
} | ||
} | ||
&::after{ | ||
content: ''; | ||
display: block; | ||
position: absolute; | ||
height: 0px; | ||
width: 0px; | ||
right: 6px; | ||
top: 50%; | ||
margin-top: -1px; | ||
border-top: 6px solid $text-color-td; | ||
border-left: 6px solid transparent; | ||
border-right: 6px solid transparent; | ||
border-bottom: none; | ||
} | ||
} | ||
.footer__navigation{ | ||
&__page-btn{ | ||
color: $text-color; | ||
&.disabled, | ||
&.disabled:hover { | ||
.chevron.left:after{ | ||
border-right-color: $text-color; | ||
} | ||
.chevron.right:after{ | ||
border-left-color: $text-color; | ||
} | ||
} | ||
} | ||
&__info{ | ||
color: $text-color; | ||
} | ||
} | ||
} | ||
|
||
// control bar | ||
.vgt-global-search{ | ||
border: 1px solid $border-color; | ||
background: linear-gradient($thead-bg-color-1, $thead-bg-color-2); | ||
} | ||
.vgt-global-search__input{ | ||
.input__icon{ | ||
.magnifying-glass{ | ||
border: 2px solid darken($border-color, 2%); | ||
&:before{ | ||
background: darken($border-color, 2%); | ||
} | ||
} | ||
} | ||
.vgt-input, .vgt-select{ | ||
color: $text-color; | ||
background-color: darken($thead-bg-color-2, 5%); | ||
border: 1px solid $input-border-color; | ||
&::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */ | ||
color: $text-color; | ||
opacity: 0.3; /* Firefox */ | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,3 +21,4 @@ | |
|
||
//themes | ||
@import './nocturnal/nocturnal'; | ||
@import './black-rhino/black-rhino'; |