wms-admin.css 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497
  1. /*
  2. * 日 期:2017.03.16
  3. * 描 述:页面顶层框架通用样式表
  4. */
  5. /*背景页*/
  6. .InternetExplorer .pace,
  7. .IE .pace {
  8. display: none;
  9. }
  10. .lr-loadbg {
  11. position: fixed;
  12. top: 0;
  13. left: 0;
  14. background: #fff;
  15. height: 100%;
  16. width: 100%;
  17. z-index: 100;
  18. }
  19. /*数据加载条*/
  20. .lr-loading-bar {
  21. position: fixed;
  22. top: 0;
  23. left: 0;
  24. z-index: 29891015;
  25. cursor: wait;
  26. width: 100%;
  27. height: 100%;
  28. display: none;
  29. }
  30. .lr-loading-bar-bg {
  31. position: absolute;
  32. top: 0;
  33. left: 0;
  34. height: 100%;
  35. width: 100%;
  36. opacity: 0.0;
  37. filter: alpha(opacity=00);
  38. background: #fff;
  39. }
  40. .lr-loading-bar-message {
  41. position: relative;
  42. left: 0;
  43. top: 50%;
  44. z-index: 1;
  45. color: #666;
  46. font-size: 20px;
  47. border: 1px solid #bbb;
  48. width: 300px;
  49. height: 80px;
  50. line-height: 78px;
  51. padding-left: 80px;
  52. padding-right: 20px;
  53. background: #fff;
  54. border-radius: 8px;
  55. background-image: url(/Content/images/loading.gif);
  56. background-repeat: no-repeat;
  57. background-position: 8px 50%;
  58. box-shadow: 0 1px 15px rgba(0,0,0,.175);
  59. margin: auto;
  60. margin-top: -40px;
  61. }
  62. /* =============
  63. Notification
  64. ============= */
  65. #toast-container {
  66. z-index: 198910188;
  67. }
  68. #toast-container > div {
  69. box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  70. opacity: 1;
  71. }
  72. #toast-container > :hover {
  73. box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  74. opacity: 1;
  75. }
  76. .toast {
  77. background-color: #64b0f2;
  78. }
  79. .toast-success {
  80. background-color: #1bb99a;
  81. border: 2px solid #1bb99a;
  82. }
  83. .toast-error {
  84. background-color: #ff3015;
  85. border: 2px solid #ff3015;
  86. }
  87. .toast-info {
  88. background-color: #3db9dc;
  89. border: 2px solid #3db9dc;
  90. }
  91. .toast-warning {
  92. background-color: #f1b53d;
  93. border: 2px solid #f1b53d;
  94. }
  95. .alerts-demo {
  96. background-color: #f7f7f9;
  97. border: 1px solid #eceeef;
  98. padding: 20px;
  99. }
  100. .progress-sm {
  101. height: 0.7rem;
  102. }
  103. .progress-xs {
  104. height: 0.4rem;
  105. }
  106. label {
  107. font-weight: 500;
  108. }
  109. .input-group-addon {
  110. font-size: 1.2rem;
  111. line-height: 1.5rem;
  112. }
  113. /*界面风格设置*/
  114. .lr-theme-setting {
  115. position: absolute;
  116. top: 50%;
  117. right: -160px;
  118. z-index: 10;
  119. width: 160px;
  120. -webkit-transition: right 0.2s;
  121. transition: right 0.2s;
  122. border: 1px solid #dee5e7;
  123. margin-top: -100px;
  124. }
  125. .lr-theme-setting.opened {
  126. right: -1px;
  127. }
  128. .lr-theme-setting .btn {
  129. position: absolute;
  130. top: -1px;
  131. left: -43px;
  132. padding: 10px 15px;
  133. background: #f6f8f8 !important;
  134. border-color: #dee5e7 !important;
  135. border-right-width: 0;
  136. outline: none !important;
  137. box-shadow: none !important;
  138. color: #58666e !important;
  139. border-top-right-radius: 0px;
  140. border-bottom-right-radius: 0px;
  141. }
  142. .lr-theme-setting .panel-heading {
  143. color: #333;
  144. border-color: #edf1f2;
  145. background-color: #f6f8f8;
  146. font-size: 14px;
  147. padding: 10px 15px;
  148. }
  149. .lr-theme-setting .panel-body {
  150. background-color: #fff;
  151. padding: 15px;
  152. color: #58666e;
  153. }
  154. .lr-theme-setting .panel-body > div {
  155. position: relative;
  156. margin-bottom: 10px;
  157. cursor: pointer;
  158. padding-left: 20px;
  159. }
  160. .lr-theme-setting .panel-body label input {
  161. position: absolute;
  162. outline: none !important;
  163. left: 0;
  164. margin-top: 3px;
  165. }
  166. /*顶部*/
  167. .lr-frame-top {
  168. position: absolute;
  169. top: 0;
  170. left: 0;
  171. width: 100%;
  172. z-index: 2;
  173. height: 40px;
  174. -moz-user-select: none;
  175. -webkit-user-select: none;
  176. -ms-user-select: none;
  177. -khtml-user-select: none;
  178. user-select: none;
  179. }
  180. /*logo标题*/
  181. .lr-logo-title {
  182. display: block;
  183. position: absolute;
  184. top: 0;
  185. height: 100%;
  186. width:320px;
  187. line-height: 0px;
  188. cursor: pointer;
  189. text-decoration: none;
  190. font-size: 18px;
  191. white-space: nowrap;
  192. }
  193. .lr-logo-title img {
  194. width:320px;
  195. }
  196. .lr-logo-title:hover {
  197. color: #3498DB;
  198. }
  199. /*菜单*/
  200. .lr-frame-menu {
  201. position: absolute;
  202. }
  203. .lr-frame-menu-wrap {
  204. position: relative;
  205. top: 0;
  206. height: 100%;
  207. overflow: visible;
  208. -moz-user-select: none;
  209. -webkit-user-select: none;
  210. -ms-user-select: none;
  211. -khtml-user-select: none;
  212. user-select: none;
  213. }
  214. .lr-frame-menu-wrap .lr-scroll-box {
  215. overflow: visible;
  216. }
  217. .lr-uitheme-default .lr-frame-menu-wrap {
  218. top: -8px;
  219. }
  220. .lr-frame-menu li {
  221. position: relative;
  222. width: 100%;
  223. zoom: 1;
  224. }
  225. .lr-menu-item {
  226. display: block;
  227. position: relative;
  228. text-decoration: none;
  229. width: 100%;
  230. overflow: hidden;
  231. }
  232. .lr-menu-item-icon {
  233. font-size: 14px;
  234. width: 25px;
  235. vertical-align: middle;
  236. margin-bottom: 1px;
  237. opacity: .9;
  238. filter: alpha(opacity=90);
  239. }
  240. .lr-uitheme-default .lr-menu-item-icon {
  241. opacity:1;
  242. filter: alpha(opacity=100);
  243. }
  244. .lr-second-menu-list, .lr-three-menu-list {
  245. display: none;
  246. }
  247. /*tabs条*/
  248. .lr-frame-tabs {
  249. position: absolute;
  250. top: 40px;
  251. left: 0;
  252. width: 100%;
  253. height: 30px;
  254. z-index: 1;
  255. padding: 0px 32px 0px 85px;
  256. -moz-user-select: none;
  257. -webkit-user-select: none;
  258. -ms-user-select: none;
  259. -khtml-user-select: none;
  260. user-select: none;
  261. }
  262. .lr-uitheme-default .lr-frame-tabs {
  263. top: 60px;
  264. left:0px;
  265. padding: 0px 32px 0px 100px;
  266. }
  267. .lr-frame-tabs-wrap {
  268. position: relative;
  269. overflow: hidden;
  270. width: 100%;
  271. height: 100%;
  272. }
  273. .lr-frame-tabs-wrap ul {
  274. position: relative;
  275. height: 100%;
  276. white-space: nowrap;
  277. }
  278. .lr-frame-tabItem {
  279. position: relative;
  280. padding: 0px 20px 0px 15px;
  281. margin-left: 5px;
  282. display: inline-block;
  283. white-space: nowrap;
  284. cursor: pointer;
  285. }
  286. .lr-uitheme-default .lr-frame-tabItem {
  287. padding: 0px 10px 0px 10px;
  288. margin-left: 0;
  289. }
  290. .lr-frame-tabItem .reomve {
  291. position: absolute;
  292. width: 12px;
  293. height: 13px;
  294. display: block;
  295. background: url(/Content/images/tab_close.png) no-repeat;
  296. }
  297. /*炫动版 关闭icon换图片*/
  298. .lr-uitheme-windos .lr-frame-tabItem:hover .reomve {
  299. display: inline-block;
  300. background: url(/Content/images/tab_close.png) no-repeat;
  301. }
  302. .lr-uitheme-default .lr-frame-tabItem .reomve {
  303. display: none;
  304. }
  305. .lr-uitheme-default .lr-frame-tabItem {
  306. padding: 0px 18px 0px 12px;
  307. }
  308. .lr-uitheme-default .lr-frame-tabItem:hover .reomve {
  309. display: inline-block;
  310. border-radius: 50%;
  311. margin-left: 5px;
  312. width:13px;
  313. height:13px;
  314. background-position: 0px 0px;
  315. background-size: 98%;
  316. }
  317. .lr-frame-tabItem .reomve:hover {
  318. background-position: 0 -12px;
  319. }
  320. /*功能窗口*/
  321. .lr-frame-main {
  322. position: absolute;
  323. width: 100%;
  324. height: 100%;
  325. z-index: 0;
  326. }
  327. .lr-uitheme-windos .lr-frame-main {
  328. background: #F7FEFF;
  329. }
  330. .lr-uitheme-default .lr-frame-main {
  331. background: #f8f8f8;
  332. }
  333. .lr-frame-main > img {
  334. position: absolute;
  335. top: 50%;
  336. left: 50%;
  337. margin: -200px 0 0 -300px;
  338. z-index: -1;
  339. }
  340. /*功能窗口ifame*/
  341. .lr-frame-iframe {
  342. width: 100%;
  343. height: 100%;
  344. display: none;
  345. }
  346. .lr-frame-iframe.active {
  347. display: block;
  348. }
  349. /*头像和个人中心*/
  350. .lr-frame-personCenter {
  351. position: absolute;
  352. z-index: 4;
  353. }
  354. .lr-frame-personCenter > a {
  355. position: relative;
  356. display: block;
  357. }
  358. .lr-uitheme-default .lr-frame-personCenter > .dropdown-toggle {
  359. color: #333;
  360. }
  361. .lr-uitheme-windos .lr-frame-personCenter > .dropdown-toggle {
  362. color: #fff;
  363. }
  364. .lr-frame-personCenter > .dropdown-toggle > img {
  365. float: left;
  366. width: 26px;
  367. height: 26px;
  368. border-radius: 50%;
  369. margin: 7px 5px 0px 0px;
  370. }
  371. .lr-frame-personCenter .dropdown-menu > li > a {
  372. padding: 5px 15px;
  373. color: #333;
  374. }
  375. .lr-uitheme-windos .lr-frame-personCenter .dropdown-menu > li > a {
  376. color: #333;
  377. }
  378. .lr-uitheme-default .lr-frame-personCenter .dropdown-menu > li > a {
  379. color: #333;
  380. }
  381. .lr-frame-personCenter .dropdown-menu {
  382. width: 120px;
  383. }
  384. .lr-uitheme-windos .lr-frame-personCenter .dropdown-menu {
  385. border:1px solid transparent;
  386. box-shadow: none;
  387. }
  388. dropdown-menu > li > a > .glyphicon,
  389. .dropdown-menu > li > a > .fa,
  390. .dropdown-menu > li > a > .ion {
  391. margin-right: 10px;
  392. }
  393. .dropdown-menu i {
  394. vertical-align: inherit;
  395. margin-bottom: 3px;
  396. }
  397. /*全屏*/
  398. .lr_frame_fullscreen {
  399. position: absolute;
  400. top: 40px;
  401. right: 10px;
  402. height: 29px;
  403. line-height: 29px;
  404. z-index: 3;
  405. }
  406. .lr_frame_fullscreen a {
  407. cursor: pointer;
  408. color: #999;
  409. }
  410. .lr_frame_fullscreen a:hover {
  411. color: #999;
  412. }
  413. /*即时通讯图标*/
  414. .lr-im-icon {
  415. position: fixed;
  416. z-index: 10;
  417. bottom: 11px;
  418. right: 13px;
  419. width: 35px;
  420. height: 35px;
  421. border: none;
  422. border-radius: 25px;
  423. background-color: rgba(0, 0, 0, 0.4);
  424. text-align: center;
  425. }
  426. .lr-im-icon i {
  427. color:#fff;
  428. line-height: 35px;
  429. font-size: 20px;
  430. }
  431. .lr-frame-main > img {
  432. opacity: .15;
  433. }