2016-05-17 07:28:15 -05:00
|
|
|
.sm-simple {
|
|
|
|
background: white;
|
|
|
|
}
|
|
|
|
.sm-simple a, .sm-simple a:hover, .sm-simple a:focus, .sm-simple a:active {
|
|
|
|
padding: 13px 20px;
|
|
|
|
/* make room for the toggle button (sub indicator) */
|
|
|
|
padding-right: 58px;
|
|
|
|
color: #555555;
|
2016-05-20 07:49:16 -05:00
|
|
|
font-family: "Segoe UI", Tahoma, Arial, Helvetica, sans-serif;
|
2016-05-18 06:09:35 -05:00
|
|
|
font-size: 12px;
|
2016-05-17 07:28:15 -05:00
|
|
|
font-weight: normal;
|
2016-05-18 06:09:35 -05:00
|
|
|
line-height: 15px;
|
2016-05-17 07:28:15 -05:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
.sm-simple a.current {
|
|
|
|
background: #555555;
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
.sm-simple a.disabled {
|
|
|
|
color: #cccccc;
|
|
|
|
}
|
|
|
|
.sm-simple a span.sub-arrow {
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
margin-top: -17px;
|
|
|
|
left: auto;
|
|
|
|
right: 4px;
|
|
|
|
width: 34px;
|
|
|
|
height: 34px;
|
|
|
|
overflow: hidden;
|
|
|
|
font: bold 14px/34px monospace !important;
|
|
|
|
text-align: center;
|
|
|
|
text-shadow: none;
|
|
|
|
background: rgba(0, 0, 0, 0.08);
|
|
|
|
}
|
|
|
|
.sm-simple a.highlighted span.sub-arrow:before {
|
|
|
|
display: block;
|
|
|
|
content: '-';
|
|
|
|
}
|
|
|
|
.sm-simple li {
|
|
|
|
}
|
|
|
|
.sm-simple > li:first-child {
|
|
|
|
border-top: 0;
|
|
|
|
}
|
|
|
|
.sm-simple ul {
|
2016-05-18 06:09:35 -05:00
|
|
|
background: #fff;
|
2016-05-17 07:28:15 -05:00
|
|
|
}
|
|
|
|
.sm-simple ul a, .sm-simple ul a:hover, .sm-simple ul a:focus, .sm-simple ul a:active {
|
2016-05-20 07:49:16 -05:00
|
|
|
font-size: 12px;
|
2016-05-18 06:09:35 -05:00
|
|
|
border-left: 8px solid transparent;
|
2016-05-17 07:28:15 -05:00
|
|
|
}
|
|
|
|
.sm-simple ul ul a,
|
|
|
|
.sm-simple ul ul a:hover,
|
|
|
|
.sm-simple ul ul a:focus,
|
|
|
|
.sm-simple ul ul a:active {
|
|
|
|
border-left: 16px solid transparent;
|
|
|
|
}
|
|
|
|
.sm-simple ul ul ul a,
|
|
|
|
.sm-simple ul ul ul a:hover,
|
|
|
|
.sm-simple ul ul ul a:focus,
|
|
|
|
.sm-simple ul ul ul a:active {
|
|
|
|
border-left: 24px solid transparent;
|
|
|
|
}
|
|
|
|
.sm-simple ul ul ul ul a,
|
|
|
|
.sm-simple ul ul ul ul a:hover,
|
|
|
|
.sm-simple ul ul ul ul a:focus,
|
|
|
|
.sm-simple ul ul ul ul a:active {
|
|
|
|
border-left: 32px solid transparent;
|
|
|
|
}
|
|
|
|
.sm-simple ul ul ul ul ul a,
|
|
|
|
.sm-simple ul ul ul ul ul a:hover,
|
|
|
|
.sm-simple ul ul ul ul ul a:focus,
|
|
|
|
.sm-simple ul ul ul ul ul a:active {
|
|
|
|
border-left: 40px solid transparent;
|
|
|
|
}
|
|
|
|
|
2016-05-18 02:51:44 -05:00
|
|
|
/* By default smartmenus is mobile first. But we don't need that for now, so
|
|
|
|
just tranform the menu to desktop style (navbar + dropdowns).
|
|
|
|
Uncomment below to enable mobile mode beyond min-width
|
|
|
|
*/
|
|
|
|
/* @media (min-width: 240px) {
|
|
|
|
Switch to desktop layout
|
|
|
|
-----------------------------------------------
|
|
|
|
These transform the menu tree from
|
|
|
|
collapsible to desktop (navbar + dropdowns)
|
|
|
|
-----------------------------------------------*/
|
|
|
|
/* start... (it's not recommended editing these rules) */
|
|
|
|
.sm-simple ul {
|
|
|
|
position: absolute;
|
|
|
|
width: 12em;
|
|
|
|
}
|
2016-05-17 07:28:15 -05:00
|
|
|
|
2016-05-18 02:51:44 -05:00
|
|
|
.sm-simple li {
|
|
|
|
float: left;
|
|
|
|
}
|
2016-05-17 07:28:15 -05:00
|
|
|
|
2016-05-18 02:51:44 -05:00
|
|
|
.sm-simple.sm-rtl li {
|
|
|
|
float: right;
|
|
|
|
}
|
2016-05-17 07:28:15 -05:00
|
|
|
|
2016-05-18 02:51:44 -05:00
|
|
|
.sm-simple ul li {
|
|
|
|
float: none;
|
|
|
|
}
|
2016-05-17 07:28:15 -05:00
|
|
|
|
2016-05-18 02:51:44 -05:00
|
|
|
.sm-simple a {
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
2016-05-17 07:28:15 -05:00
|
|
|
|
2016-05-18 02:51:44 -05:00
|
|
|
.sm-simple ul a, .sm-simple.sm-vertical a {
|
|
|
|
white-space: normal;
|
|
|
|
}
|
2016-05-17 07:28:15 -05:00
|
|
|
|
2016-05-18 02:51:44 -05:00
|
|
|
.sm-simple .sm-nowrap > li > a, .sm-simple .sm-nowrap > li > :not(ul) a {
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
2016-05-17 07:28:15 -05:00
|
|
|
|
2016-05-18 02:51:44 -05:00
|
|
|
/* ...end */
|
|
|
|
.sm-simple {
|
|
|
|
background: #efefef;
|
2016-05-19 05:37:10 -05:00
|
|
|
-webkit-touch-callout: none; /* iOS Safari */
|
|
|
|
-webkit-user-select: none; /* Chrome/Safari/Opera */
|
|
|
|
-khtml-user-select: none; /* Konqueror */
|
|
|
|
-moz-user-select: none; /* Firefox */
|
|
|
|
-ms-user-select: none; /* Internet Explorer/Edge */
|
|
|
|
user-select: none;
|
|
|
|
cursor: default;
|
2016-05-18 02:51:44 -05:00
|
|
|
}
|
2016-05-20 01:33:20 -05:00
|
|
|
.sm-simple a.disabled {
|
|
|
|
cursor: default;
|
|
|
|
}
|
2016-05-19 05:32:45 -05:00
|
|
|
.sm-simple > li > a.has-submenu {
|
|
|
|
padding-left: 15px;
|
|
|
|
padding-right: 15px;
|
|
|
|
padding-top: 8px;
|
|
|
|
z-index: 500;
|
|
|
|
border-left: 1px solid #efefef;
|
|
|
|
border-right: 1px solid #efefef;
|
|
|
|
}
|
2016-05-18 02:51:44 -05:00
|
|
|
.sm-simple a, .sm-simple a:hover, .sm-simple a:focus, .sm-simple a:active, .sm-simple a.highlighted {
|
|
|
|
padding: 5px 15px;
|
2016-05-20 03:51:13 -05:00
|
|
|
color: #000;
|
2016-05-18 02:51:44 -05:00
|
|
|
}
|
|
|
|
.sm-simple a:hover, .sm-simple a:focus, .sm-simple a:active, .sm-simple a.highlighted {
|
2016-05-20 03:51:13 -05:00
|
|
|
background: #538ecd;
|
|
|
|
color: #fff;
|
2016-05-18 02:51:44 -05:00
|
|
|
}
|
|
|
|
.sm-simple > li > a:hover, .sm-simple > li > a:focus, .sm-simple > li > a:active, .sm-simple > li > a.highlighted {
|
|
|
|
background: #fff;
|
2016-05-20 03:51:13 -05:00
|
|
|
color: #000;
|
2016-05-19 05:32:45 -05:00
|
|
|
border-color: #bbbbbb;
|
|
|
|
border-bottom: 1px solid #bbb;
|
|
|
|
}
|
|
|
|
.sm-simple > li > a.highlighted {
|
|
|
|
border-bottom-color: #fff;
|
2016-05-18 02:51:44 -05:00
|
|
|
}
|
|
|
|
.sm-simple a.current {
|
|
|
|
background: #555555;
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
.sm-simple a.disabled {
|
|
|
|
background: white;
|
|
|
|
color: #cccccc;
|
|
|
|
}
|
|
|
|
.sm-simple a.has-submenu {
|
|
|
|
padding-right: 32px;
|
|
|
|
}
|
2016-05-19 05:32:45 -05:00
|
|
|
|
2016-05-19 04:30:08 -05:00
|
|
|
.sm-simple > li > ul {
|
|
|
|
margin-top: -1px !important;
|
|
|
|
z-index: 400;
|
2016-05-19 04:15:32 -05:00
|
|
|
}
|
2016-05-18 02:51:44 -05:00
|
|
|
.sm-simple a span.sub-arrow {
|
|
|
|
top: 50%;
|
|
|
|
margin-top: -8px;
|
|
|
|
right: 20px;
|
|
|
|
width: 8px;
|
|
|
|
height: 16px;
|
|
|
|
font: 14px/16px monospace !important;
|
|
|
|
background: transparent;
|
|
|
|
}
|
|
|
|
.sm-simple > li > a span.sub-arrow {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.sm-simple a.highlighted span.sub-arrow:before {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.sm-simple > li {
|
|
|
|
border-top: 0;
|
|
|
|
border-left: 1px solid #eeeeee;
|
|
|
|
}
|
|
|
|
.sm-simple > li:first-child {
|
|
|
|
border-left: 0;
|
|
|
|
}
|
|
|
|
.sm-simple ul {
|
|
|
|
border: 1px solid #bbbbbb;
|
|
|
|
background: white;
|
|
|
|
}
|
|
|
|
.sm-simple ul a {
|
|
|
|
border: 0 !important;
|
|
|
|
}
|
|
|
|
.sm-simple ul a.has-submenu {
|
|
|
|
padding-right: 20px;
|
|
|
|
}
|
|
|
|
.sm-simple ul a span.sub-arrow {
|
|
|
|
right: 0;
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
|
|
|
.sm-simple ul > li {
|
|
|
|
border-left: 0;
|
|
|
|
}
|
|
|
|
.sm-simple ul > li:first-child {
|
|
|
|
border-top: 0;
|
|
|
|
}
|
2016-05-18 09:39:54 -05:00
|
|
|
.sm-simple a.separator {
|
|
|
|
height: 1px;
|
2016-05-20 03:13:01 -05:00
|
|
|
margin: 4px 0;
|
2016-05-18 09:39:54 -05:00
|
|
|
overflow: hidden;
|
|
|
|
padding-top: 0;
|
|
|
|
padding-bottom: 0;
|
|
|
|
background-color: #efefef;
|
|
|
|
}
|
2016-05-18 02:51:44 -05:00
|
|
|
.sm-simple span.scroll-up,
|
|
|
|
.sm-simple span.scroll-down {
|
|
|
|
position: absolute;
|
|
|
|
display: none;
|
|
|
|
visibility: hidden;
|
|
|
|
overflow: hidden;
|
|
|
|
background: white;
|
|
|
|
height: 20px;
|
|
|
|
}
|
|
|
|
.sm-simple span.scroll-up-arrow, .sm-simple span.scroll-down-arrow {
|
|
|
|
position: absolute;
|
|
|
|
top: -2px;
|
|
|
|
left: 50%;
|
|
|
|
margin-left: -8px;
|
|
|
|
width: 0;
|
|
|
|
height: 0;
|
|
|
|
overflow: hidden;
|
|
|
|
border-width: 8px;
|
|
|
|
border-style: dashed dashed solid dashed;
|
|
|
|
border-color: transparent transparent #555555 transparent;
|
|
|
|
}
|
|
|
|
.sm-simple span.scroll-down-arrow {
|
|
|
|
top: 6px;
|
|
|
|
border-style: solid dashed dashed dashed;
|
|
|
|
border-color: #555555 transparent transparent transparent;
|
|
|
|
}
|
|
|
|
.sm-simple.sm-rtl a.has-submenu {
|
|
|
|
padding-right: 20px;
|
|
|
|
padding-left: 32px;
|
|
|
|
}
|
|
|
|
.sm-simple.sm-rtl a span.sub-arrow {
|
|
|
|
right: auto;
|
|
|
|
left: 20px;
|
|
|
|
}
|
|
|
|
.sm-simple.sm-rtl.sm-vertical a.has-submenu {
|
|
|
|
padding: 11px 20px;
|
|
|
|
}
|
|
|
|
.sm-simple.sm-rtl.sm-vertical a span.sub-arrow {
|
|
|
|
right: 20px;
|
|
|
|
margin-right: -12px;
|
|
|
|
}
|
|
|
|
.sm-simple.sm-rtl > li:first-child {
|
|
|
|
border-left: 1px solid #eeeeee;
|
|
|
|
}
|
|
|
|
.sm-simple.sm-rtl > li:last-child {
|
|
|
|
border-left: 0;
|
|
|
|
}
|
|
|
|
.sm-simple.sm-rtl ul a.has-submenu {
|
|
|
|
padding: 11px 20px;
|
|
|
|
}
|
|
|
|
.sm-simple.sm-rtl ul a span.sub-arrow {
|
|
|
|
right: 20px;
|
|
|
|
margin-right: -12px;
|
|
|
|
}
|
|
|
|
.sm-simple.sm-vertical a span.sub-arrow {
|
|
|
|
right: auto;
|
|
|
|
margin-left: -12px;
|
|
|
|
}
|
|
|
|
.sm-simple.sm-vertical li {
|
|
|
|
border-left: 0;
|
|
|
|
border-top: 1px solid #eeeeee;
|
|
|
|
}
|
|
|
|
.sm-simple.sm-vertical > li:first-child {
|
|
|
|
border-top: 0;
|
|
|
|
}
|
|
|
|
/*}*/
|