simplebootadminindex.min.scss 21 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205
  1. @charset 'utf-8';
  2. // header background-color
  3. $header-background-color: #2B7DBC;
  4. $navbar-header-bgcolor: #4996D2;
  5. $header-topnav-bgcolor: #2B7DBC;
  6. $header-admin-bgcolor: #2373B0;
  7. $header-background-color-active: #0081CD;
  8. // header border color
  9. $header-bordered-color: #56B6EB;
  10. // header height
  11. $header-height: 80px;
  12. // aside background color
  13. $aside-background-color: #F8F8F8;
  14. // asid background color
  15. $aside-background-color-active: #F5F6F6;
  16. // text primary color
  17. $primary-color: #000000;
  18. // text default color
  19. $default-color: #3D3D3D;
  20. // text muted color
  21. $muted-color: #585858;
  22. // icon primary color
  23. $icon-primary-color: rgb(2, 163, 238);
  24. /**
  25. * reset bootstrap style
  26. * start
  27. */
  28. body {
  29. margin: 0;
  30. padding: 0;
  31. }
  32. .navbar {
  33. height: $header-height;
  34. margin-bottom: 0;
  35. .nav > li > a,
  36. .nav > li > a:hover,
  37. .nav > li > a:focus {
  38. font-size: 14px;
  39. color: #FFFFFF;
  40. }
  41. &-header {
  42. background-color: $navbar-header-bgcolor;
  43. & > a:hover {
  44. color: #FFFFFF !important;
  45. }
  46. }
  47. &-brand {
  48. width: 200px;
  49. height: $header-height;
  50. padding: 35px 0;
  51. font-size: 21px;
  52. text-align: center;
  53. -webkit-transition: width .5s ease;
  54. -o-transition: width .5s ease;
  55. transition: width .5s ease;
  56. }
  57. &-default {
  58. background-color: $header-background-color;
  59. .navbar-nav > li:hover > a,
  60. .navbar-nav > .open > a {
  61. background-color: $navbar-header-bgcolor !important;
  62. }
  63. }
  64. &-toggle {
  65. background-color: $header-background-color;
  66. height: $header-height;
  67. width: 40px;
  68. margin: 0;
  69. border: 0 none;
  70. border-radius: 0;
  71. display: block;
  72. padding: 57px 0;
  73. display: none;
  74. &:hover,
  75. &:focus {
  76. background-color: transparent !important;
  77. }
  78. .icon-bar {
  79. width: 15px;
  80. }
  81. .icon-bar + .icon-bar {
  82. margin-top: 2px;
  83. }
  84. }
  85. // top menu
  86. &-topnav {
  87. //border-right: 1px solid $header-bordered-color;
  88. background-color: $header-topnav-bgcolor;
  89. padding-left: 25px;
  90. & > li {
  91. //border-left: 1px solid $header-bordered-color;
  92. padding: 8px 20px;
  93. text-align: center;
  94. & > a {
  95. border-radius: 5px;
  96. line-height: 20px;
  97. padding: 3px 10px;
  98. min-width: 64px;
  99. height: 64px;
  100. & > .fa {
  101. display: block;
  102. font-size: 25px;
  103. line-height: 38px;
  104. height: 28px;
  105. width: 30px;
  106. margin: 0 auto;
  107. margin-bottom: 12px;
  108. }
  109. }
  110. &.active {
  111. & > a {
  112. background-color: $navbar-header-bgcolor !important;
  113. -webkit-box-shadow: 2px 2px 10px rgba(0, 0, 0, .5);
  114. -moz-box-shadow: 2px 2px 10px rgba(0, 0, 0, .5);
  115. box-shadow: 2px 2px 10px rgba(0, 0, 0, .5);
  116. }
  117. }
  118. }
  119. }
  120. .topnav-toggle {
  121. & > a {
  122. height: $header-height;
  123. padding: 54px 18px !important;
  124. }
  125. .icon-point {
  126. background-color: #FFFFFF;
  127. border-radius: 50%;
  128. width: 4px;
  129. height: 4px;
  130. display: block;
  131. }
  132. .icon-point + .icon-point {
  133. margin-top: 2px;
  134. }
  135. }
  136. }
  137. .dropdown {
  138. position: relative;
  139. }
  140. .admin-identity {
  141. position: absolute;
  142. right: 30px;
  143. top: 10px;
  144. display: inline-block;
  145. padding: 5px 10px !important;
  146. height: 20px;
  147. text-align: center;
  148. line-height: 20px;
  149. font-size: 14px;
  150. color: #EEEEEE;
  151. }
  152. .super-admin {
  153. padding: 0 20px !important;
  154. right: 0;
  155. top: 18px;
  156. height: 40px !important;
  157. line-height: 40px !important;
  158. }
  159. .dropdown-menu {
  160. min-width: 80px !important;
  161. }
  162. /**
  163. * reset bootstrap style
  164. * end
  165. */
  166. /**
  167. * aside
  168. */
  169. .sidebar {
  170. position: relative;
  171. z-index: 1;
  172. float: left;
  173. width: 200px;
  174. min-height: 400px;
  175. background-color: $aside-background-color;
  176. -webkit-transition: width .5s ease;
  177. -o-transition: width .5s ease;
  178. transition: width .5s ease;
  179. &:before {
  180. position: absolute;
  181. top: 0;
  182. bottom: 0;
  183. z-index: -1;
  184. height: 100%;
  185. width: 100%;
  186. background-color: $aside-background-color;
  187. content: '';
  188. }
  189. &.fixed {
  190. position: fixed;
  191. top: 50px;
  192. left: 0;
  193. z-index: 1029;
  194. &:before {
  195. right: auto;
  196. left: 0;
  197. }
  198. }
  199. &_kind {
  200. padding: 8px 12px;
  201. background-color: #FFFFFF;
  202. & > button {
  203. width: 80px;
  204. height: 25px;
  205. text-align: center;
  206. line-height: 25px;
  207. background-color: #6FC191;
  208. text-decoration: underline;
  209. outline: none;
  210. border: none;
  211. padding: 0;
  212. &:last-child {
  213. //background-color: #EC774B;
  214. background-color: #EF7A01;
  215. margin-left: 10px;
  216. }
  217. & > a {
  218. color: #FFFFFF;
  219. font-size: 13px;
  220. }
  221. }
  222. }
  223. &_back {
  224. height: 30px;
  225. border-bottom: 1px solid #DEDEDE;
  226. position: relative;
  227. text-align: center;
  228. padding: 6px 0;
  229. & > a {
  230. width: 18px;
  231. height: 18px;
  232. display: block;
  233. margin: 0 auto;
  234. background: url(left.png) no-repeat center center;
  235. padding: 0 15px;
  236. position: relative;
  237. z-index: 10;
  238. background-color: #F8F8F8;
  239. }
  240. &:after {
  241. content: '';
  242. position: absolute;
  243. right: 5px;
  244. width: 100%;
  245. height: 1px;
  246. top: 50%;
  247. margin-top: -1px;
  248. background-color: #E4E4E4;
  249. }
  250. }
  251. }
  252. /**
  253. * submenu
  254. */
  255. .nav-list {
  256. li {
  257. font-size: 13px;
  258. white-space: nowrap;
  259. &.open {
  260. border-bottom:none!important;
  261. &>.submenu{
  262. border-bottom: 1px solid #DDDDDD;
  263. border-top: 1px solid #DDDDDD;
  264. &>li{
  265. a {
  266. border-left: 1px dotted #8ECEFF;
  267. border-bottom: 1px dashed #EEEEEE;
  268. &:before {
  269. border-color: #8ECEFF !important;
  270. }
  271. }
  272. &:last-child {
  273. &>a{
  274. border-bottom: none;
  275. }
  276. }
  277. }
  278. }
  279. &.active,
  280. &.opennow {
  281. border-right: 2px solid #2B7DBC;
  282. & > a {
  283. color: #333;
  284. border-left: 1px dotted #8ECEFF;
  285. & > [class*="fa-"]:first-child {
  286. color: #02A3EE;
  287. }
  288. }
  289. }
  290. & > a {
  291. & > .arrow {
  292. -webkit-transform: rotate(0deg);
  293. -ms-transform: rotate(0deg);
  294. -o-transform: rotate(0deg);
  295. transform: rotate(0deg);
  296. }
  297. }
  298. .submenu {
  299. display: block!important;
  300. }
  301. }
  302. }
  303. a {
  304. display: block;
  305. height: 60px;
  306. padding: 15px;
  307. font-size: 13px;
  308. line-height: 30px;
  309. color: $primary-color;
  310. text-decoration: none;
  311. position: relative;
  312. & > [class*="fa-"]:first-child {
  313. display: inline-block;
  314. vertical-align: middle;
  315. min-width: 30px;
  316. font-size: 18px;
  317. line-height: 30px;
  318. text-align: center;
  319. color: #585858;
  320. margin-top: -3px;
  321. margin-right: 5px;
  322. }
  323. & > .menu-text {
  324. display: inline-block;
  325. vertical-align: middle;
  326. }
  327. &:hover,
  328. &:focus {
  329. //background-color: transparent !important;
  330. text-decoration: none;
  331. }
  332. }
  333. .arrow {
  334. position: absolute;
  335. top: 50%;
  336. right: 5px;
  337. display: inline-block;
  338. margin-top: -15px;
  339. width: 30px !important;
  340. height: 30px;
  341. padding: 0;
  342. font-size: 18px;
  343. line-height: 30px;
  344. color: $icon-primary-color;
  345. text-align: center;
  346. -webkit-transition: transform .3s ease;
  347. -o-transition: transform .3s ease;
  348. transition: transform .3s ease;
  349. -webkit-transform: rotate(-180deg);
  350. -ms-transform: rotate(-180deg);
  351. -o-transform: rotate(-180deg);
  352. transform: rotate(-180deg);
  353. }
  354. & > li {
  355. position: relative;
  356. display: none;
  357. padding: 0;
  358. margin: 0;
  359. border: 0;
  360. background-color: #FFFFFF;
  361. &:first-child {
  362. display: block;
  363. }
  364. & > a {
  365. display: none;
  366. padding: 15px;
  367. }
  368. & > .submenu {
  369. position: relative;
  370. padding: 0;
  371. margin: 0;
  372. list-style: none;
  373. & > li {
  374. overflow: hidden;
  375. position: relative;
  376. background-color: #F8F8FE;
  377. border-bottom: 1px solid #EEEEEE;
  378. border-color: #EEEEEE;
  379. & > a {
  380. height: 40px;
  381. padding: 5px 0 10px 16px;
  382. background-color: #F8F8FE;
  383. color: #333333;
  384. font-weight: 500;
  385. border-left: none;
  386. }
  387. &.active,
  388. &.opennow {
  389. & > a {
  390. font-weight: 600;
  391. background-color: #EEEEEE;
  392. }
  393. &>.submenu{
  394. &>li{
  395. &>a{
  396. border-bottom: 1px dashed #EEEEEE!important;
  397. border-left: 1px dotted #8ECEFF;
  398. }
  399. &:last-child {
  400. &>a{
  401. border-bottom: none !important;
  402. }
  403. }
  404. }
  405. }
  406. }
  407. &>.submenu {
  408. display: none;
  409. background-color: #FFFFFF;
  410. & > li {
  411. padding-left: 30px;
  412. height: 36px;
  413. position: relative;
  414. background-color: #FFFFFF;
  415. border-left: 1px solid #EEEEEE;
  416. &:last-child {
  417. border-bottom: 0 none;
  418. }
  419. &:hover {
  420. background-color: #F5F5FE;
  421. &:before {
  422. content: '';
  423. position: absolute;
  424. left: 29px;
  425. top: 50%;
  426. margin-top: -5px;
  427. z-index: 10;
  428. width: 5px;
  429. height: 11px;
  430. background: #F5F5FE url('blue.png') 1px 2px no-repeat;
  431. }
  432. & > a {
  433. border-left-color: #8ec8ff !important;
  434. border-bottom-color: #E4E4E4 !important;
  435. color: #333333!important;
  436. &:before {
  437. display: none;
  438. }
  439. }
  440. }
  441. &.active {
  442. background-color: #E8E8Ee;
  443. &:before {
  444. content: '';
  445. position: absolute;
  446. left: 29px;
  447. top: 50%;
  448. margin-top: -5px;
  449. z-index: 10;
  450. width: 5px;
  451. height: 11px;
  452. background: #E8E8Ee url('red.png') 1px 2px no-repeat;
  453. }
  454. & > a {
  455. border-left-color: #8ECEFF !important;
  456. border-bottom-color: #E4E4E4 !important;
  457. color: #02A3EE;
  458. &:before {
  459. display: none;
  460. }
  461. }
  462. &:after {
  463. content: '';
  464. position: absolute;
  465. right: 0;
  466. top: 50%;
  467. margin-top: -14px;
  468. width: 8px;
  469. height: 28px;
  470. background: url('blue_02.png') no-repeat;
  471. }
  472. }
  473. & > a {
  474. color: #777;
  475. height: 100%;
  476. padding: 10px 0 10px 23px;
  477. line-height: 15px;
  478. font-size: 13px;
  479. &:before {
  480. content: '';
  481. height: 1px;
  482. width: 8px;
  483. border: 1px dotted #2B7DBC;
  484. position: absolute;
  485. left: 0;
  486. top: 50%;
  487. margin-top: -1px;
  488. }
  489. & > [class*="fa-"]:first-child {
  490. height: 6px;
  491. width: 6px;
  492. min-width: 6px;
  493. overflow: hidden;
  494. background-color: $icon-primary-color;
  495. border-radius: 50%;
  496. margin-right: 4px;
  497. display: none;
  498. }
  499. }
  500. }
  501. }
  502. }
  503. }
  504. }
  505. }
  506. .nav-list a .badge, .nav-list a .label {
  507. position: absolute;
  508. top: 9px;
  509. right: 11px;
  510. padding-right: 6px;
  511. padding-left: 6px;
  512. font-size: 12px;
  513. opacity: .88
  514. }
  515. .nav-list a .badge [class*="fa-"], .nav-list a .label [class*="fa-"] {
  516. margin: 0;
  517. vertical-align: middle
  518. }
  519. .nav-list a.dropdown-toggle .badge, .nav-list a.dropdown-toggle .label {
  520. right: 28px
  521. }
  522. .nav-list a:hover .badge, .nav-list a:hover .label {
  523. opacity: 1
  524. }
  525. .menu-min .nav-list a .badge, .menu-min .nav-list a .label {
  526. position: relative;
  527. top: -1px;
  528. right: auto;
  529. left: 4px
  530. }
  531. .nav-list .submenu .submenu a .badge, .nav-list .submenu .submenu a .label {
  532. top: 6px
  533. }
  534. .menu-min .nav-list .submenu .submenu a .badge, .menu-min .nav-list .submenu .submenu a .label {
  535. top: 0
  536. }
  537. .menu-min {
  538. width: 90px;
  539. .sidebar_kind{
  540. padding: 0;
  541. button{
  542. width: 90px;
  543. &:last-child{
  544. margin-left: 0;
  545. }
  546. }
  547. }
  548. &:before {
  549. width: 90px;
  550. }
  551. .nav-list {
  552. font-size: 13px;
  553. li.open{
  554. border-bottom: 1px solid #EEEEEE!important;
  555. }
  556. & > li {
  557. & > .submenu {
  558. & > li {
  559. //overflow: visible;
  560. overflow: hidden;
  561. & > a {
  562. text-align: center;
  563. .menu-text,
  564. .arrow {
  565. display: none;
  566. }
  567. }
  568. }
  569. .submenu {
  570. border-left: 1px solid rgba(0, 0, 0, 0.1);
  571. display: none !important;
  572. position: absolute;
  573. left: 90px;
  574. top: 0;
  575. z-index: 2;
  576. width: 200px;
  577. & > li {
  578. padding-left: 20px;
  579. }
  580. }
  581. }
  582. }
  583. }
  584. .sidebar_back{
  585. &>a{
  586. background-image: url(right.png);
  587. }
  588. }
  589. }
  590. /**
  591. * contextmenu
  592. */
  593. .contextmenu {
  594. background-color: #FFFFFF;
  595. border: 1px solid #D2D2D2;
  596. border-radius: 2px;
  597. position: absolute;
  598. z-index: 1;
  599. }
  600. .contextmenu > a {
  601. color: #000000;
  602. display: block;
  603. font-size: 12px;
  604. line-height: 36px;
  605. padding: 0 15px;
  606. }
  607. .contextmenu > a:hover,
  608. .contextmenu > a:focus {
  609. background-color: #EEEEEE;
  610. text-decoration: none;
  611. }
  612. .sidebar-collapse {
  613. position: relative;
  614. padding: 3px 0;
  615. text-align: center;
  616. background-color: #F3F3F3;
  617. border-bottom: 1px solid #E0E0E0
  618. }
  619. .sidebar-collapse > [class*="fa-"] {
  620. position: relative;
  621. display: inline-block;
  622. padding: 0 5px;
  623. font-size: 14px;
  624. line-height: 18px;
  625. color: #AAAAAA;
  626. cursor: pointer;
  627. background-color: #FFFFFF;
  628. border: 1px solid #BBBBBB;
  629. border-radius: 16px
  630. }
  631. .sidebar-collapse:before {
  632. position: absolute;
  633. top: 13px;
  634. right: 15px;
  635. left: 15px;
  636. display: inline-block;
  637. height: 0;
  638. border-top: 1px solid #E0E0E0;
  639. content: ""
  640. }
  641. .sidebar-shortcuts {
  642. float: right;
  643. height: $header-height;
  644. line-height: $header-height;
  645. margin-right: 10px;
  646. display: none;
  647. }
  648. .breadcrumbs {
  649. position: relative;
  650. display: block;
  651. height: 100%;
  652. padding: 0 12px 0 0;
  653. background-color: transparent;
  654. }
  655. .main-content {
  656. min-height: 100%;
  657. padding: 0;
  658. margin-top: 0;
  659. overflow: hidden;
  660. }
  661. .page-content {
  662. padding: 8px 20px 24px;
  663. margin: 0;
  664. background: #FFFFFF
  665. }
  666. .main-container {
  667. position: relative;
  668. padding: 0
  669. }
  670. .simplewind-nav {
  671. background-color: $header-admin-bgcolor;
  672. }
  673. .simplewind-nav > li:first-child {
  674. border-left: none
  675. }
  676. .simplewind-nav > li {
  677. position: relative;
  678. height: $header-height;
  679. padding: 0;
  680. line-height: 52px;
  681. border-left: 1px solid #DDDDDD;
  682. &.quick-link {
  683. background-color: $header-topnav-bgcolor;
  684. padding-right: 10px;
  685. &:hover {
  686. & > a {
  687. background-color: #4996D2 !important;
  688. }
  689. }
  690. & > a {
  691. background-color: #4996D2 !important;
  692. border-radius: 5px;
  693. height: 40px;
  694. line-height: 40px;
  695. margin: 20px 0;
  696. padding: 0 15px;
  697. &:hover {
  698. background-color: #4996D2 !important;
  699. }
  700. }
  701. }
  702. &:last-child{
  703. padding: 0 20px;
  704. }
  705. }
  706. .simplewind-nav > li > a {
  707. position: relative;
  708. display: inline-block;
  709. line-height: 52px;
  710. height: 100%;
  711. color: #EEEEEE;
  712. background-color: transparent;
  713. }
  714. .simplewind-nav .nav-user-photo {
  715. max-width: 36px !important;
  716. margin: -4px 8px 0 0;
  717. border: 2px solid #FFFFFF;
  718. border-radius: 24px
  719. }
  720. .user-header {
  721. width: 60px;
  722. height: 60px;
  723. margin: 10px 0;
  724. }
  725. .navbar .brand {
  726. padding: 10px 20px 10px;
  727. }
  728. .admin-tab {
  729. overflow: hidden;
  730. padding: 0 20px;
  731. position: relative;
  732. height: 43px;
  733. background-color: #F5F5F5;
  734. display: none;
  735. &:after {
  736. content: '';
  737. position: absolute;
  738. left: 0;
  739. bottom: 0;
  740. height: 2px;
  741. width: 100%;
  742. background-color: #EEEFEF;
  743. }
  744. &_location {
  745. height: 100%;
  746. line-height: 43px;
  747. .info {
  748. &_title {
  749. font-size: 13px;
  750. display: inline-block;
  751. color: #000000;
  752. font-weight: 600;
  753. }
  754. &_list {
  755. display: inline-block;
  756. }
  757. &_cnt {
  758. font-size: 12px;
  759. color: #333333;
  760. padding: 0 12px;
  761. position: relative;
  762. display: inline-block;
  763. cursor: pointer;
  764. &:hover{
  765. //color: #02A3EE;
  766. color: #EF7A01;
  767. }
  768. &:nth-last-child(1):after {
  769. display: none;
  770. }
  771. &:after {
  772. content: '';
  773. position: absolute;
  774. right: 0;
  775. top: 50%;
  776. width: 4px;
  777. height: 8px;
  778. margin-top: -5px;
  779. background: url('right_02.png') no-repeat;
  780. }
  781. }
  782. }
  783. .iconfont {
  784. font-size: 13px;
  785. color: #8a8a8a;
  786. &:hover{
  787. color: #ef7a01;
  788. }
  789. }
  790. .tips {
  791. margin-top: -4px;
  792. }
  793. }
  794. }
  795. .game-intro {
  796. position: relative;
  797. left: 5px;
  798. bottom: -6px;
  799. height: 20px;
  800. color: #333333;
  801. font-size: 12px;
  802. display: none;
  803. }
  804. .admin-tab_prev,
  805. .admin-tab_next {
  806. background-color: #FFFFFF;
  807. color: #6DCAF5;
  808. cursor: pointer;
  809. font-size: 12px;
  810. position: absolute;
  811. top: 17px;
  812. width: 40px;
  813. text-align: center;
  814. display: none;
  815. }
  816. .admin-tab_prev {
  817. left: 0;
  818. }
  819. .admin-tab_next {
  820. right: 0;
  821. }
  822. .admin-tab_prev:hover,
  823. .admin-tab_next:hover {
  824. color: $header-background-color;
  825. }
  826. .admin-tab_outer {
  827. position: relative;
  828. overflow: hidden;
  829. width: 1000%;
  830. display: none;
  831. }
  832. .admin-tab_inner {
  833. float: left;
  834. }
  835. .admin-tab_item {
  836. cursor: pointer;
  837. float: left;
  838. position: relative;
  839. &.active {
  840. &:after {
  841. content: '';
  842. height: 2px;
  843. width: 100%;
  844. position: absolute;
  845. left: 0;
  846. bottom: 0;
  847. z-index: 1;
  848. background-color: #5EADF7;
  849. }
  850. }
  851. }
  852. .admin-tab_text {
  853. font-family: 'Microsoft Yahei', verdana;
  854. font-size: 12px;
  855. padding: 15px 25px !important;
  856. color: $muted-color;
  857. }
  858. .admin-tab_text:hover,
  859. .admin-tab_text:focus {
  860. background-color: transparent !important;
  861. color: $muted-color;
  862. }
  863. .admin-tab_text .fa:first-child {
  864. margin-right: 3px;
  865. }
  866. .admin-tab_txt {
  867. font-style: normal;
  868. }
  869. .admin-tab_close {
  870. color: #C2C2C2;
  871. font-size: 14px;
  872. margin-left: 5px;
  873. }
  874. .admin-tab_close:hover {
  875. color: #ED7669
  876. }
  877. #loading {
  878. position: absolute;
  879. top: 10px;
  880. left: 250px;
  881. z-index: 9999;
  882. display: none;
  883. width: 100px;
  884. height: 26px;
  885. color: #FFFFFF;
  886. background: url("loadingbg.png") no-repeat
  887. }
  888. #loading .loadingicon {
  889. position: absolute;
  890. top: 0;
  891. left: 0;
  892. display: inline-block;
  893. width: 26px;
  894. height: 26px;
  895. background: url("loading.gif") no-repeat center
  896. }
  897. #loading span {
  898. margin-left: 26px;
  899. font-family: 'Microsoft Yahei', verdana;
  900. font-size: 12px;
  901. font-weight: bold;
  902. line-height: 26px
  903. }
  904. #right-tools-wrapper {
  905. position: absolute;
  906. top: 50px;
  907. right: 20px;
  908. z-index: 99;
  909. cursor: pointer
  910. }
  911. #right-tools-wrapper span {
  912. vertical-align: middle
  913. }
  914. #right-tools-wrapper span .right_tool_icon {
  915. width: 24px;
  916. height: 24px;
  917. font-size: 24px;
  918. color: #FFFFFF
  919. }
  920. #nav-wrapper {
  921. position: relative;
  922. height: 100%;
  923. border-right: 1px solid #CCCCCC;
  924. }
  925. .nav-list > li.open {
  926. position: absolute;
  927. top: 0;
  928. left: 0;
  929. z-index: 99;
  930. width: 100%;
  931. height: 100%;
  932. border-bottom-color: #E5E5E5
  933. }
  934. .nav-list > li.open a {
  935. color: #FFFFFF;
  936. padding-left: 7px
  937. }
  938. .nav-list > li.open .normal {
  939. display: none !important
  940. }
  941. .nav-list > li.open .back {
  942. visibility: visible
  943. }
  944. .nav-list > li .back {
  945. visibility: hidden
  946. }
  947. .nav-list > li .fa.back {
  948. position: absolute;
  949. top: 11px;
  950. left: 10px;
  951. z-index: 1;
  952. width: 18px;
  953. height: auto;
  954. font-size: 14px;
  955. font-weight: normal;
  956. line-height: 12px;
  957. text-align: center;
  958. }
  959. .nav-list > li > .submenu:before {
  960. border-left: 0 solid #CCD7E2
  961. }
  962. .nav_shortcuts {
  963. margin-top: 5px
  964. }
  965. #content {
  966. padding: 0;
  967. }
  968. #right-tools-wrapper span .right_tool_icon {
  969. color: #010101
  970. }
  971. .nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
  972. background: transparent;
  973. }
  974. // >1366px
  975. @media (max-width: 1366px) {
  976. .navbar-topnav {
  977. background-color: #2B7DBC;
  978. padding-left: 0;
  979. }
  980. .navbar-topnav > li {
  981. padding: 8px 12px;
  982. }
  983. .super-admin {
  984. padding: 0 12px !important;
  985. }
  986. .simplewind-nav > li:last-child {
  987. padding: 0 12px;
  988. }
  989. }
  990. @media (max-width: 1200px) {
  991. .navbar-topnav {
  992. background-color: #2B7DBC;
  993. padding-left: 0;
  994. }
  995. .navbar-topnav > li {
  996. padding: 8px 6px;
  997. }
  998. .super-admin {
  999. padding: 0 6px !important;
  1000. }
  1001. .simplewind-nav > li:last-child {
  1002. padding: 0 6px;
  1003. }
  1004. }
  1005. @media (max-width: 767px) {
  1006. .navbar-header {
  1007. float: left;
  1008. }
  1009. .navbar-collapse.collapse {
  1010. display: block !important;
  1011. height: auto !important;
  1012. padding-bottom: 0;
  1013. padding-right: 0;
  1014. overflow: hidden;
  1015. }
  1016. .navbar-collapse.collapse ul, .navbar-collapse.collapse ul > li {
  1017. float: left;
  1018. margin: 0;
  1019. }
  1020. #navbar-main .navbar-right {
  1021. float: right !important;
  1022. }
  1023. .navbar-nav .open .dropdown-menu {
  1024. position: absolute;
  1025. }
  1026. }