File size: 633 Bytes
ae01f49 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | .dashboard-link {
text-align: center;
}
.dashboard-link a {
cursor: pointer;
}
.dashboard-tab-container {
padding: 0px;
}
.dashboard-tab {
border: 0px;
border-radius: 4px 4px 0px 0px;
margin-right: 1px;
font-size: 13px;
line-height: 25px;
margin-top: 5px;
}
.dashboard-tab.active {
margin-top: 0px;
line-height: 30px;
}
.icon-postgres:before {
height: 43px;
margin-top: 13px;
display: block;
}
/* CSS to make subnode control look pretty - START */
.dashboard-tab-container .subnode-dialog .form-control {
font-size: inherit;
}
.dashboard-hidden {
display: none;
}
|