209 lines
3.6 KiB
SCSS
209 lines
3.6 KiB
SCSS
html {
|
|
font-family: tahoma, sans-serif;
|
|
direction: rtl;
|
|
}
|
|
|
|
.bootstrap { /* fix SVG */
|
|
.chart svg {
|
|
direction: ltr;
|
|
|
|
svg {
|
|
text {
|
|
font: 500 11px Tahoma, Arial, sans-serif !important;
|
|
}
|
|
}
|
|
}/* reverse font awesome icon directions */
|
|
.icon-step-forward::before {
|
|
content: "\f048";
|
|
}
|
|
|
|
.icon-fast-forward::before {
|
|
content: "\f049";
|
|
}
|
|
|
|
.icon-forward::before {
|
|
content: "\f04a";
|
|
}
|
|
|
|
.icon-backward::before {
|
|
content: "\f04e";
|
|
}
|
|
|
|
.icon-fast-backward::before {
|
|
content: "\f050";
|
|
}
|
|
|
|
.icon-step-backward::before {
|
|
content: "\f051";
|
|
}
|
|
|
|
.icon-chevron-right::before {
|
|
content: "\f053";
|
|
}
|
|
|
|
.icon-chevron-left::before {
|
|
content: "\f054";
|
|
}
|
|
|
|
.icon-arrow-right::before {
|
|
content: "\f060";
|
|
}
|
|
|
|
.icon-arrow-left::before {
|
|
content: "\f061";
|
|
}
|
|
|
|
.icon-hand-o-left::before,
|
|
.icon-hand-right::before {
|
|
content: "\f0a4";
|
|
}
|
|
|
|
.icon-hand-o-right::before,
|
|
.icon-hand-left::before {
|
|
content: "\f0a5";
|
|
}
|
|
|
|
.icon-caret-right::before {
|
|
content: "\f0d9";
|
|
}
|
|
|
|
.icon-caret-left::before {
|
|
content: "\f0da";
|
|
}
|
|
|
|
.icon-angle-double-right::before,
|
|
.icon-double-angle-right::before {
|
|
content: "\f100";
|
|
}
|
|
|
|
.icon-angle-double-left::before,
|
|
.icon-double-angle-left::before {
|
|
content: "\f101";
|
|
}
|
|
|
|
.icon-angle-right::before {
|
|
content: "\f104";
|
|
}
|
|
|
|
.icon-angle-left::before {
|
|
content: "\f105";
|
|
}
|
|
|
|
.icon-quote-right::before {
|
|
content: "\f10d";
|
|
}
|
|
|
|
.icon-quote-left::before {
|
|
content: "\f10e";
|
|
}
|
|
|
|
.icon-chevron-circle-right::before,
|
|
.icon-chevron-sign-right::before {
|
|
content: "\f137";
|
|
}
|
|
|
|
.icon-chevron-circle-left::before,
|
|
.icon-chevron-sign-left::before {
|
|
content: "\f138";
|
|
}
|
|
|
|
.icon-toggle-left::before,
|
|
.icon-caret-square-o-left::before {
|
|
content: "\f152";
|
|
}
|
|
|
|
.icon-long-arrow-right::before {
|
|
content: "\f177";
|
|
}
|
|
|
|
.icon-long-arrow-left::before {
|
|
content: "\f178";
|
|
}
|
|
|
|
.icon-arrow-circle-o-left::before {
|
|
content: "\f18e";
|
|
}
|
|
|
|
.icon-arrow-circle-o-right::before {
|
|
content: "\f190";
|
|
}
|
|
|
|
.icon-toggle-right::before,
|
|
.icon-caret-square-o-right::before {
|
|
content: "\f191";
|
|
}
|
|
//fix bootstrap
|
|
dd {
|
|
margin-right: 0;
|
|
}
|
|
|
|
.pull-right {
|
|
float: left !important;
|
|
}
|
|
|
|
.pull-left {
|
|
float: right !important;
|
|
}
|
|
|
|
.input-group input[type="text"] {
|
|
float: right;
|
|
}
|
|
}
|
|
|
|
.kpi-container {
|
|
padding-bottom: 10px !important;
|
|
|
|
.kpi-refresh {
|
|
position: absolute;
|
|
left: 20px;
|
|
z-index: 1;
|
|
}
|
|
}
|
|
|
|
#nav-bar {
|
|
ul.menu {
|
|
li.link-levelone {
|
|
&.hover:not(.active) {
|
|
&::before {
|
|
position: absolute;
|
|
right: inherit;
|
|
left: 0;
|
|
z-index: 1;
|
|
width: 0;
|
|
height: 0;
|
|
margin-top: 6px;
|
|
content: "";
|
|
background-color: transparent;
|
|
border-color: transparent transparent transparent $main-color;
|
|
border-style: solid;
|
|
border-width: 8px 0 8px 10px;
|
|
@media (min-height: $min-height) {
|
|
margin-top: 10px;
|
|
}
|
|
}
|
|
}
|
|
|
|
&.active {
|
|
a,
|
|
li.active a {
|
|
&.title {
|
|
background-color: $sidebar-menu-bg-hover-color;
|
|
border-right: 0;
|
|
border-left: 3px solid #fff;
|
|
}
|
|
}
|
|
@media (min-height: $min-height) {
|
|
ul.submenu {
|
|
body:not(.page-sidebar-closed) & {
|
|
margin-right: 35px;
|
|
margin-left: 0;
|
|
@include border-right(1px solid $sidebar-menu-bg-hover-color);
|
|
border-left: 0;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|