mirror of https://gitee.com/bigwinds/arangodb
scss
This commit is contained in:
parent
d9a31855af
commit
33e3fa7267
|
@ -3668,6 +3668,36 @@ input.gv-radio-button {
|
||||||
@media (min-width: 1042px) and (max-width: 1284px) {
|
@media (min-width: 1042px) and (max-width: 1284px) {
|
||||||
.arango-collection-ul a {
|
.arango-collection-ul a {
|
||||||
font-size: 13px; } }
|
font-size: 13px; } }
|
||||||
|
.arango-table {
|
||||||
|
border-top: 1px solid #000;
|
||||||
|
width: 100%; }
|
||||||
|
.arango-table thead {
|
||||||
|
background-color: #fff; }
|
||||||
|
.arango-table thead th {
|
||||||
|
border-bottom: 1px solid #c2c2c2;
|
||||||
|
height: 43px; }
|
||||||
|
.arango-table tbody tr:nth-child(even) {
|
||||||
|
background-color: #fff; }
|
||||||
|
.arango-table tbody tr:nth-child(odd) {
|
||||||
|
background: #f1f0ee; }
|
||||||
|
.arango-table tbody td {
|
||||||
|
padding: 10px 18px; }
|
||||||
|
|
||||||
|
.arango-tabbar {
|
||||||
|
height: 27px;
|
||||||
|
width: 100%; }
|
||||||
|
.arango-tabbar button {
|
||||||
|
background: #f1f0ee;
|
||||||
|
border: 0;
|
||||||
|
float: right;
|
||||||
|
height: 27px;
|
||||||
|
width: 82px; }
|
||||||
|
.arango-tabbar .arango-active-tab {
|
||||||
|
background-color: #fff;
|
||||||
|
border-left: 1px solid #000;
|
||||||
|
border-right: 1px solid #000;
|
||||||
|
border-top: 1px solid #000; }
|
||||||
|
|
||||||
.arangoDataTable {
|
.arangoDataTable {
|
||||||
border-spacing: 0 0;
|
border-spacing: 0 0;
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|
|
@ -60,6 +60,11 @@
|
||||||
// screen sizes
|
// screen sizes
|
||||||
@import 'screenSizes';
|
@import 'screenSizes';
|
||||||
|
|
||||||
|
//arangoTable Template
|
||||||
|
@import 'arangoTable';
|
||||||
|
//arangoTabbar Template
|
||||||
|
@import 'arangoTabbar';
|
||||||
|
|
||||||
// Data Tables, TODO: might all be superflous
|
// Data Tables, TODO: might all be superflous
|
||||||
@import 'dataTables';
|
@import 'dataTables';
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue