Dashboard sipadu mbip
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

jquery.toolbar.css 10KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487
  1. .tool-container, .tool-item, .btn-toolbar {
  2. -webkit-box-sizing: content-box;
  3. -moz-box-sizing: content-box;
  4. box-sizing: content-box;
  5. }
  6. .btn-toolbar {
  7. background: #364347;
  8. width: 20px;
  9. height: 20px;
  10. text-align: center;
  11. padding: 10px;
  12. border-radius: 6px;
  13. display: block;
  14. transition: none;
  15. }
  16. .btn-toolbar > i {
  17. color: #02baf2;
  18. font-size: 16px;
  19. }
  20. .btn-toolbar:hover {
  21. background: #02baf2;
  22. cursor: pointer;
  23. }
  24. .btn-toolbar:hover > i {
  25. color: white;
  26. }
  27. .btn-toolbar-primary {
  28. background-color: #009dcd;
  29. }
  30. .btn-toolbar-primary.pressed {
  31. background-color: #02baf2;
  32. }
  33. .btn-toolbar-primary:hover {
  34. background-color: #02baf2;
  35. }
  36. .btn-toolbar-primary > i {
  37. color: white;
  38. }
  39. .btn-toolbar-danger {
  40. background-color: #cc0000;
  41. }
  42. .btn-toolbar-danger.pressed {
  43. background-color: #f84545;
  44. }
  45. .btn-toolbar-danger:hover {
  46. background-color: #f84545;
  47. }
  48. .btn-toolbar-danger > i {
  49. color: white;
  50. }
  51. .btn-toolbar-warning {
  52. background-color: #f3bc65;
  53. }
  54. .btn-toolbar-warning.pressed {
  55. background-color: #fad46b;
  56. }
  57. .btn-toolbar-warning:hover {
  58. background-color: #fad46b;
  59. }
  60. .btn-toolbar-warning > i {
  61. color: white;
  62. }
  63. .btn-toolbar-info {
  64. background-color: #e96300;
  65. }
  66. .btn-toolbar-info.pressed {
  67. background-color: #f58410;
  68. }
  69. .btn-toolbar-info:hover {
  70. background-color: #f58410;
  71. }
  72. .btn-toolbar-info > i {
  73. color: white;
  74. }
  75. .btn-toolbar-success {
  76. background-color: #28948c;
  77. }
  78. .btn-toolbar-success.pressed {
  79. background-color: #3eb5ac;
  80. }
  81. .btn-toolbar-success:hover {
  82. background-color: #3eb5ac;
  83. }
  84. .btn-toolbar-success > i {
  85. color: white;
  86. }
  87. .btn-toolbar-info-o {
  88. background-color: #9175bd;
  89. }
  90. .btn-toolbar-info-o.pressed {
  91. background-color: #a88cd5;
  92. }
  93. .btn-toolbar-info-o:hover {
  94. background-color: #a88cd5;
  95. }
  96. .btn-toolbar-info-o > i {
  97. color: white;
  98. }
  99. .btn-toolbar-light {
  100. background-color: #b2c6cd;
  101. }
  102. .btn-toolbar-light.pressed {
  103. background-color: #d6e1e5;
  104. }
  105. .btn-toolbar-light:hover {
  106. background-color: #d6e1e5;
  107. }
  108. .btn-toolbar-light > i {
  109. color: white;
  110. }
  111. .btn-toolbar-dark {
  112. background-color: #364347;
  113. }
  114. .btn-toolbar-dark.pressed {
  115. background-color: #5e696d;
  116. }
  117. .btn-toolbar-dark:hover {
  118. background-color: #5e696d;
  119. }
  120. .btn-toolbar-dark > i {
  121. color: white;
  122. }
  123. .tool-container {
  124. background-color: #5e696d;
  125. background-size: 100% 100%;
  126. border-radius: 6px;
  127. position: absolute;
  128. }
  129. .tool-container.tool-top,
  130. .tool-container.tool-bottom {
  131. height: 40px;
  132. border-bottom: 0px solid #beb8b8;
  133. }
  134. .tool-container.tool-top .tool-item,
  135. .tool-container.tool-bottom .tool-item {
  136. float: left;
  137. border-right: 0;
  138. border-left: 0;
  139. }
  140. .tool-item {
  141. height: 100%;
  142. display: block;
  143. width: 20px;
  144. height: 20px;
  145. text-align: center;
  146. padding: 10px;
  147. transition: none;
  148. }
  149. .tool-item > .fa {
  150. color: #b2c6cd;
  151. }
  152. .tool-item.selected,
  153. .tool-item:hover {
  154. background: #02baf2;
  155. }
  156. .tool-item.selected > .fa,
  157. .tool-item:hover > .fa {
  158. color: white;
  159. }
  160. .tool-top .tool-item:first-child:hover,
  161. .tool-bottom .tool-item:first-child:hover {
  162. border-top-left-radius: 6px;
  163. border-bottom-left-radius: 6px;
  164. }
  165. .tool-top .tool-item:last-child:hover,
  166. .tool-bottom .tool-item:last-child:hover {
  167. border-top-right-radius: 6px;
  168. border-bottom-right-radius: 6px;
  169. }
  170. .tool-vertical-top .tool-item:first-child:hover,
  171. .tool-vertical-bottom .tool-item:first-child:hover,
  172. .tool-right .tool-item:first-child:hover,
  173. .tool-left .tool-item:first-child:hover {
  174. border-top-left-radius: 6px;
  175. border-top-right-radius: 6px;
  176. }
  177. .tool-vertical-top .tool-item:last-child:hover,
  178. .tool-vertical-bottom .tool-item:last-child:hover,
  179. .tool-right .tool-item:last-child:hover,
  180. .tool-left .tool-item:last-child:hover {
  181. border-bottom-left-radius: 6px;
  182. border-bottom-right-radius: 6px;
  183. }
  184. .tool-container .arrow {
  185. width: 0;
  186. height: 0;
  187. position: absolute;
  188. border-width: 7px;
  189. border-style: solid;
  190. }
  191. .tool-container.tool-top .arrow {
  192. border-color: #5e696d transparent transparent;
  193. left: 50%;
  194. bottom: -14px;
  195. margin-left: -7px;
  196. }
  197. .tool-container.tool-bottom .arrow {
  198. border-color: transparent transparent #5e696d;
  199. left: 50%;
  200. top: -14px;
  201. margin-left: -7px;
  202. }
  203. .tool-container.tool-left .arrow {
  204. border-color: transparent transparent transparent #5e696d;
  205. top: 50%;
  206. right: -14px;
  207. margin-top: -7px;
  208. }
  209. .tool-container.tool-right .arrow {
  210. border-color: transparent #5e696d transparent transparent;
  211. top: 50%;
  212. left: -14px;
  213. margin-top: -7px;
  214. }
  215. .toolbar-primary {
  216. background-color: #02baf2;
  217. }
  218. .toolbar-primary.tool-top .arrow {
  219. border-color: #02baf2 transparent transparent;
  220. }
  221. .toolbar-primary.tool-bottom .arrow {
  222. border-color: transparent transparent #02baf2;
  223. }
  224. .toolbar-primary.tool-left .arrow {
  225. border-color: transparent transparent transparent #02baf2;
  226. }
  227. .toolbar-primary.tool-right .arrow {
  228. border-color: transparent #02baf2 transparent transparent;
  229. }
  230. .toolbar-primary .tool-item > .fa {
  231. color: white;
  232. }
  233. .toolbar-primary .tool-item.selected,
  234. .toolbar-primary .tool-item:hover {
  235. background: #009dcd;
  236. color: white;
  237. }
  238. .toolbar-danger {
  239. background-color: #f84545;
  240. }
  241. .toolbar-danger.tool-top .arrow {
  242. border-color: #f84545 transparent transparent;
  243. }
  244. .toolbar-danger.tool-bottom .arrow {
  245. border-color: transparent transparent #f84545;
  246. }
  247. .toolbar-danger.tool-left .arrow {
  248. border-color: transparent transparent transparent #f84545;
  249. }
  250. .toolbar-danger.tool-right .arrow {
  251. border-color: transparent #f84545 transparent transparent;
  252. }
  253. .toolbar-danger .tool-item > .fa {
  254. color: white;
  255. }
  256. .toolbar-danger .tool-item.selected,
  257. .toolbar-danger .tool-item:hover {
  258. background: #cc0000;
  259. color: white;
  260. }
  261. .toolbar-warning {
  262. background-color: #f3bc65;
  263. }
  264. .toolbar-warning.tool-top .arrow {
  265. border-color: #f3bc65 transparent transparent;
  266. }
  267. .toolbar-warning.tool-bottom .arrow {
  268. border-color: transparent transparent #f3bc65;
  269. }
  270. .toolbar-warning.tool-left .arrow {
  271. border-color: transparent transparent transparent #f3bc65;
  272. }
  273. .toolbar-warning.tool-right .arrow {
  274. border-color: transparent #f3bc65 transparent transparent;
  275. }
  276. .toolbar-warning .tool-item > .fa {
  277. color: white;
  278. }
  279. .toolbar-warning .tool-item.selected,
  280. .toolbar-warning .tool-item:hover {
  281. background: #fad46b;
  282. color: white;
  283. }
  284. .toolbar-info {
  285. background-color: #e96300;
  286. }
  287. .toolbar-info.tool-top .arrow {
  288. border-color: #e96300 transparent transparent;
  289. }
  290. .toolbar-info.tool-bottom .arrow {
  291. border-color: transparent transparent #e96300;
  292. }
  293. .toolbar-info.tool-left .arrow {
  294. border-color: transparent transparent transparent #e96300;
  295. }
  296. .toolbar-info.tool-right .arrow {
  297. border-color: transparent #e96300 transparent transparent;
  298. }
  299. .toolbar-info .tool-item > .fa {
  300. color: white;
  301. }
  302. .toolbar-info .tool-item.selected,
  303. .toolbar-info .tool-item:hover {
  304. background: #f58410;
  305. color: white;
  306. }
  307. .toolbar-success {
  308. background-color: #28948c;
  309. }
  310. .toolbar-success.tool-top .arrow {
  311. border-color: #28948c transparent transparent;
  312. }
  313. .toolbar-success.tool-bottom .arrow {
  314. border-color: transparent transparent #28948c;
  315. }
  316. .toolbar-success.tool-left .arrow {
  317. border-color: transparent transparent transparent #28948c;
  318. }
  319. .toolbar-success.tool-right .arrow {
  320. border-color: transparent #28948c transparent transparent;
  321. }
  322. .toolbar-success .tool-item > .fa {
  323. color: white;
  324. }
  325. .toolbar-success .tool-item.selected,
  326. .toolbar-success .tool-item:hover {
  327. background: #3eb5ac;
  328. color: white;
  329. }
  330. .toolbar-info-o {
  331. background-color: #9175bd;
  332. }
  333. .toolbar-info-o.tool-top .arrow {
  334. border-color: #9175bd transparent transparent;
  335. }
  336. .toolbar-info-o.tool-bottom .arrow {
  337. border-color: transparent transparent #9175bd;
  338. }
  339. .toolbar-info-o.tool-left .arrow {
  340. border-color: transparent transparent transparent #9175bd;
  341. }
  342. .toolbar-info-o.tool-right .arrow {
  343. border-color: transparent #9175bd transparent transparent;
  344. }
  345. .toolbar-info-o .tool-item > .fa {
  346. color: white;
  347. }
  348. .toolbar-info-o .tool-item.selected,
  349. .toolbar-info-o .tool-item:hover {
  350. background: #a88cd5;
  351. color: white;
  352. }
  353. .toolbar-light {
  354. background-color: #b2c6cd;
  355. }
  356. .toolbar-light.tool-top .arrow {
  357. border-color: #b2c6cd transparent transparent;
  358. }
  359. .toolbar-light.tool-bottom .arrow {
  360. border-color: transparent transparent #b2c6cd;
  361. }
  362. .toolbar-light.tool-left .arrow {
  363. border-color: transparent transparent transparent #b2c6cd;
  364. }
  365. .toolbar-light.tool-right .arrow {
  366. border-color: transparent #b2c6cd transparent transparent;
  367. }
  368. .toolbar-light .tool-item > .fa {
  369. color: white;
  370. }
  371. .toolbar-light .tool-item.selected,
  372. .toolbar-light .tool-item:hover {
  373. background: #d6e1e5;
  374. color: white;
  375. }
  376. .toolbar-dark {
  377. background-color: #364347;
  378. }
  379. .toolbar-dark.tool-top .arrow {
  380. border-color: #364347 transparent transparent;
  381. }
  382. .toolbar-dark.tool-bottom .arrow {
  383. border-color: transparent transparent #364347;
  384. }
  385. .toolbar-dark.tool-left .arrow {
  386. border-color: transparent transparent transparent #364347;
  387. }
  388. .toolbar-dark.tool-right .arrow {
  389. border-color: transparent #364347 transparent transparent;
  390. }
  391. .toolbar-dark .tool-item > .fa {
  392. color: white;
  393. }
  394. .toolbar-dark .tool-item.selected,
  395. .toolbar-dark .tool-item:hover {
  396. background: #5e696d;
  397. color: white;
  398. }
  399. .animate-standard {
  400. -webkit-animation: standardAnimate 0.3s 1 ease;
  401. }
  402. .animate-flyin {
  403. -webkit-animation: rotateAnimate 0.5s 1 ease;
  404. }
  405. .animate-grow {
  406. -webkit-animation: growAnimate 0.4s 1 ease;
  407. }
  408. .animate-flip {
  409. -webkit-animation: flipAnimate 0.4s 1 ease;
  410. }
  411. .animate-bounce {
  412. -webkit-animation: bounceAnimate 0.4s 1 ease-out;
  413. }
  414. @-webkit-keyframes rotateAnimate {
  415. from {
  416. transform: rotate(180deg) translate(-120px);
  417. opacity: 0;
  418. }
  419. to {
  420. transform: rotate(0deg) translate(0px);
  421. opacity: 1;
  422. }
  423. }
  424. @-webkit-keyframes standardAnimate {
  425. from {
  426. transform: translateY(20px);
  427. opacity: 0;
  428. }
  429. to {
  430. transform: translateY(0px);
  431. opacity: 1;
  432. }
  433. }
  434. @-webkit-keyframes growAnimate {
  435. 0% {
  436. transform: scale(0) translateY(40px);
  437. opacity: 0;
  438. }
  439. 70% {
  440. transform: scale(1.5) translate(0px);
  441. }
  442. 100% {
  443. transform: scale(1) translate(0px);
  444. opacity: 1;
  445. }
  446. }
  447. @-webkit-keyframes rotate2Animate {
  448. from {
  449. transform: rotate(-90deg);
  450. transform-origin: 0% 100%;
  451. opacity: 0;
  452. }
  453. to {
  454. transform: rotate(0deg);
  455. opacity: 1;
  456. }
  457. }
  458. @-webkit-keyframes flipAnimate {
  459. from {
  460. transform: rotate3d(2, 2, 2, 180deg);
  461. opacity: 0;
  462. }
  463. to {
  464. transform: rotate3d(0, 0, 0, 0deg);
  465. opacity: 1;
  466. }
  467. }
  468. @-webkit-keyframes bounceAnimate {
  469. 0% {
  470. transform: translateY(40px);
  471. opacity: 0;
  472. }
  473. 30% {
  474. transform: translateY(-40px);
  475. }
  476. 70% {
  477. transform: translateY(20px);
  478. }
  479. 100% {
  480. transform: translateY(0px);
  481. opacity: 1;
  482. }
  483. }
  484. .hidden {
  485. display: none;
  486. }