management.css 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326
  1. [v-cloak]{
  2. display: none;
  3. }
  4. html,body,#app {
  5. margin: 0;
  6. padding: 0;
  7. height: 100%;
  8. color: #333;
  9. }
  10. ul {
  11. margin: 0;
  12. padding: 0;
  13. list-style-type: none;
  14. }
  15. a {
  16. text-decoration:none;
  17. }
  18. .clearfix:after {
  19. visibility: hidden;
  20. display: block;
  21. font-size: 0;
  22. content: ".";
  23. clear: both;
  24. height: 0;
  25. }
  26. .clearfix {
  27. zoom: 1;
  28. }
  29. .fl {
  30. float: left;
  31. }
  32. .fr {
  33. float: right;
  34. }
  35. .header{
  36. background-color: #fff;
  37. border-bottom: 1px solid #e1e1e1;
  38. padding: 10px 15px;
  39. }
  40. .header .title{
  41. font-size: 14px;
  42. font-weight: bold;
  43. padding-right: 10px;
  44. color: #333;
  45. border-right: 1px solid #e1e1e1;
  46. }
  47. .header img{
  48. vertical-align: text-bottom;
  49. }
  50. .ui-popup-full { width: auto; }
  51. #app>.ui-grid, #app>.ui-grid .ui-grid {
  52. height: 100%;
  53. }
  54. .ul-wrap {
  55. background-color:#f5f5fa;
  56. height: -moz-calc(100% - 100px);
  57. height: -webkit-calc(100% - 100px);
  58. height: calc(100% - 100px);
  59. overflow-y: auto;
  60. }
  61. .left-panel {
  62. width: 450px;
  63. border-right: 1px solid #d7dce6;
  64. }
  65. .title-name {
  66. height: 40px;
  67. line-height: 40px;
  68. border-bottom: 1px solid #d7dce6;
  69. box-sizing: border-box;
  70. }
  71. .title-name:before {
  72. content: '';
  73. display: inline-block;
  74. vertical-align: middle;
  75. background: #12b7f5;
  76. width: 4px;
  77. height: 20px;
  78. margin-right: 10px;
  79. }
  80. .inp-search {
  81. border: solid 1px #d7dce6;
  82. margin: 10px 0 auto;
  83. width: 100%;
  84. height: 30px;
  85. padding-left: 10px;
  86. box-sizing: border-box;
  87. }
  88. .search-warp {
  89. position: relative;
  90. }
  91. .search-warp::after {
  92. content: ' ';
  93. width: 20px;
  94. height: 20px;
  95. position: absolute;
  96. right: 8px;
  97. top: 14px;
  98. display: block;
  99. background: url(../../../images/sousuo_icon.png) center center / 15px 15px no-repeat;
  100. }
  101. .temp-item {
  102. height: 28px;
  103. line-height: 28px;
  104. background-color: #ffffff;
  105. border-radius: 5px;
  106. border: solid 1px #82dcfa;
  107. margin: 20px 0;
  108. cursor: pointer;
  109. }
  110. .temp-item.active {
  111. color: #fff;
  112. background-color: #12b7f5;
  113. }
  114. .temp-item.add {
  115. height: 28px;
  116. background-color: #ffffff;
  117. border-radius: 5px;
  118. border: solid 1px #82dcfa;
  119. }
  120. .wushuju {
  121. width: 260px;
  122. margin-top: 100px;
  123. }
  124. .new-temp-btn {
  125. width: 120px;
  126. height: 34px;
  127. background-color: #ffffff;
  128. border-radius: 17px;
  129. border: solid 1px #12b7f5;
  130. font-size: 14px;
  131. color: #12b7f5;
  132. padding: 5px 10px;
  133. cursor: pointer;
  134. }
  135. .temp-name-inpt {
  136. height: 28px;
  137. line-height: 28px;
  138. box-sizing: border-box;
  139. padding-left: 10px;
  140. }
  141. .save-temp-name-btn {
  142. height: 28px;
  143. line-height: 28px;
  144. background-color: #12b7f5;
  145. border-radius: 2px;
  146. color: #ffffff;
  147. width: 80px;
  148. display: inline-block;
  149. }
  150. .foot-btns {
  151. position: absolute;
  152. bottom: 20px;
  153. left: 50%;
  154. margin-left: -94px;
  155. }
  156. .delete-btn {
  157. width: 90px;
  158. height: 34px;
  159. background-color: #f96565;
  160. border-radius: 2px;
  161. padding: 5px 10px;
  162. color: #fff;
  163. font-size: 14px;
  164. cursor: pointer;
  165. }
  166. .save-btn {
  167. width: 90px;
  168. height: 34px;
  169. background-color: #12b7f5;
  170. border-radius: 2px;
  171. padding: 5px 10px;
  172. color: #fff;
  173. font-size: 14px;
  174. cursor: pointer;
  175. }
  176. .list-item {
  177. position: relative;
  178. cursor: pointer;
  179. }
  180. .list-item.arrow-r:before {
  181. height: 11px;
  182. width: 11px;
  183. content: '';
  184. display: inline-block;
  185. vertical-align: middle;
  186. background: url(../../../images/shouqi_jiantou_icon.png) no-repeat 100%;
  187. margin-right: 5px;
  188. }
  189. .list-item.arrow-d:before {
  190. height: 11px;
  191. width: 11px;
  192. content: '';
  193. display: inline-block;
  194. vertical-align: middle;
  195. background: url(../../../images/zhankai_jiantou_icon.png) no-repeat 100%;
  196. margin-right: 5px;
  197. }
  198. .list-item-name {
  199. width: 320px;
  200. height: 28px;
  201. line-height: 28px;
  202. background-color: #12b7f5;
  203. border-radius: 5px;
  204. /*border: solid 1px #82dcfa;*/
  205. color: #fff;
  206. display: inline-block;
  207. vertical-align: middle;
  208. }
  209. .add-item-btn {
  210. width: 60px;
  211. height: 28px;
  212. background-color: #12b7f5;
  213. border-radius: 5px;
  214. color: #fff;
  215. display: inline-block;
  216. vertical-align: middle;
  217. text-align: center;
  218. line-height: 28px;
  219. }
  220. .add-item-btn.disabled {
  221. background-color: #d7dce6;
  222. pointer-events: none;
  223. }
  224. .item-card {
  225. position: relative;
  226. background-color: #ffffff;
  227. border-radius: 10px;
  228. border: solid 1px #d7dce6;
  229. }
  230. .item-card:before {
  231. content: '';
  232. width: 3px;
  233. height: 60px;
  234. background-color: #12b7f5;
  235. border-radius: 3px;
  236. position: absolute;
  237. left: 0;
  238. top: 50%;
  239. margin-top: -30px;
  240. }
  241. .item-delete-btn {
  242. position: absolute;
  243. right: 5px;
  244. top: 50%;
  245. margin-top: -10px;
  246. cursor: pointer;
  247. }
  248. .template-items {
  249. height: -moz-calc(100% - 100px);
  250. height: -webkit-calc(100% - 100px);
  251. height: calc(100% - 100px);
  252. overflow-y: auto;
  253. }
  254. .item-detail {
  255. border: solid 1px #d7dce6;
  256. box-sizing: border-box;
  257. }
  258. .item-detail-name {
  259. height: 40px;
  260. line-height: 40px;
  261. background-color: #f5f5fa;
  262. }
  263. .back-btn {
  264. display: inline-block;
  265. width: 90px;
  266. height: 34px;
  267. line-height: 34px;
  268. background-color: #12b7f5;
  269. border-radius: 2px;
  270. color: #fff;
  271. cursor: pointer;
  272. position: absolute;
  273. left: 50%;
  274. bottom: 10px;
  275. margin-left: -60px;
  276. font-size: 14px;
  277. }
  278. .item-detail-wrap {
  279. height: -moz-calc(100% - 20px);
  280. height: -webkit-calc(100% - 20px);
  281. height: calc(100% - 20px);
  282. }
  283. .item-detail-innerwrap {
  284. height: -moz-calc(100% - 50px);
  285. height: -webkit-calc(100% - 50px);
  286. height: calc(100% - 50px);
  287. overflow-y: auto;
  288. }