style-metro.css 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743
  1. /***
  2. Modify bootstrap buttons
  3. ***/
  4. /* remove rounds from all elements */
  5. div, input, select, textarea, span, img, table, td, th, p, a, button, ul, li {
  6. -webkit-border-radius: 0 !important;
  7. -moz-border-radius: 0 !important;
  8. border-radius: 0 !important;
  9. }
  10. a:focus {
  11. outline: none !important;
  12. }
  13. a:hover, a:active {
  14. outline: 0 !important;
  15. }
  16. select:focus {
  17. outline: none !important;
  18. }
  19. .btn {
  20. background-color: #e5e5e5;
  21. background-image: none;
  22. filter: none;
  23. border: 0;
  24. padding: 7px 14px;
  25. text-shadow: none;
  26. font-family: "Segoe UI", Helvetica, Arial, sans-serif;
  27. font-size: 14px;
  28. color: #333333;
  29. cursor: pointer;
  30. outline: none;
  31. -webkit-box-shadow: none !important;
  32. -moz-box-shadow: none !important;
  33. box-shadow: none !important;
  34. -webkit-border-radius: 0 !important;
  35. -moz-border-radius: 0 !important;
  36. border-radius: 0 !important;
  37. }
  38. .btn:hover,
  39. .btn:focus,
  40. .btn:active,
  41. .btn.active,
  42. .btn[disabled],
  43. .btn.disabled {
  44. color: #333333;
  45. background-color: #d8d8d8 !important;
  46. }
  47. .btn.red-stripe
  48. {
  49. border-left: 3px solid #d84a38;
  50. }
  51. .btn.blue-stripe
  52. {
  53. border-left: 3px solid #4d90fe;
  54. }
  55. .btn.purple-stripe
  56. {
  57. border-left: 3px solid #852b99;
  58. }
  59. .btn.green-stripe
  60. {
  61. border-left: 3px solid #35aa47;
  62. }
  63. .btn.yellow-stripe {
  64. border-left: 3px solid #ffb848;
  65. }
  66. /* Red */
  67. .btn.red {
  68. color: white;
  69. text-shadow: none;
  70. background-color: #d84a38;
  71. }
  72. .btn.red:hover,
  73. .btn.red:focus,
  74. .btn.red:active,
  75. .btn.red.active,
  76. .btn.red[disabled],
  77. .btn.red.disabled {
  78. background-color: #bb2413 !important;
  79. color: #fff !important;
  80. }
  81. /* Blue */
  82. .btn.transparent
  83. {
  84. color: black;
  85. text-shadow: none;
  86. background-color: transparent;
  87. }
  88. .btn.blue
  89. {
  90. color: white;
  91. text-shadow: none;
  92. background-color: #4d90fe;
  93. }
  94. .btn.blue:hover,
  95. .btn.blue:focus,
  96. .btn.blue:active,
  97. .btn.blue.active,
  98. .btn.blue[disabled],
  99. .btn.blue.disabled {
  100. background-color: #0362fd !important;
  101. color: #fff !important;
  102. }
  103. /* Green */
  104. .btn.green {
  105. color: white;
  106. text-shadow: none;
  107. background-color: #35aa47;
  108. }
  109. .btn.green:hover,
  110. .btn.green:focus,
  111. .btn.green:active,
  112. .btn.green.active,
  113. .btn.green.disabled,
  114. .btn.green[disabled]{
  115. background-color: #1d943b !important;
  116. color: #fff !important;
  117. }
  118. /* Purple */
  119. .btn.purple {
  120. color: white;
  121. text-shadow: none;
  122. background-color: #852b99;
  123. }
  124. .btn.purple:hover,
  125. .btn.purple:focus,
  126. .btn.purple:active,
  127. .btn.purple.active,
  128. .btn.purple.disabled,
  129. .btn.purple[disabled] {
  130. background-color: #6d1b81 !important;
  131. color: #fff !important;
  132. }
  133. .btn.yellow {
  134. color: white;
  135. text-shadow: none;
  136. background-color: #ffb848;
  137. }
  138. .btn.yellow:hover,
  139. .btn.yellow:focus,
  140. .btn.yellow:active,
  141. .btn.yellow.active,
  142. .btn.yellow.disabled,
  143. .btn.yellow[disabled] {
  144. background-color: #eca22e !important;
  145. color: #fff !important;
  146. }
  147. .btn.black {
  148. color: white;
  149. text-shadow: none;
  150. background-color: #555555;
  151. }
  152. .btn.black:hover,
  153. .btn.black:focus,
  154. .btn.black:active,
  155. .btn.black.active,
  156. .btn.black.disabled,
  157. .btn.black[disabled] {
  158. background-color: #222222 !important;
  159. color: #fff !important;
  160. }
  161. .mini
  162. {
  163. height: 13px;
  164. font-size: 11px !important;
  165. line-height: 13px;
  166. padding: 4px 10px;
  167. }
  168. .big
  169. {
  170. height: 38px;
  171. font-size: 18px;
  172. line-height: 38px;
  173. padding: 8px 16px;
  174. }
  175. button.btn.big,
  176. input[type="button"].btn.big,
  177. input[type="submit"].btn.big {
  178. height: 54px;
  179. padding-top: 9px;
  180. padding-bottom: 8px;
  181. }
  182. button.btn.mini,
  183. input[type="button"].btn.mini,
  184. input[type="submit"].btn.mini {
  185. height: 21px;
  186. padding-top: 3px;
  187. padding-bottom: 3px;
  188. }
  189. a.btn.big.btn-block {
  190. height: 54px;
  191. }
  192. /***
  193. Metro icons
  194. ***/
  195. [class^="m-icon-"] {
  196. display: inline-block;
  197. width: 14px;
  198. height: 14px;;
  199. margin-top: 4px;
  200. line-height: 14px;
  201. vertical-align: top;
  202. background-image: url(../image/syncfusion-icons.png);
  203. background-position: 0 0;
  204. background-repeat: no-repeat;
  205. }
  206. [class^="m-icon-big-"] {
  207. display: inline-block;
  208. width: 30px;
  209. height: 30px;
  210. margin: 6px;
  211. vertical-align: top;
  212. background-image: url(../image/syncfusion-icons.png);
  213. background-position: 0 0px;
  214. background-repeat: no-repeat;
  215. }
  216. .m-icon-white {
  217. background-image: url(../image/syncfusion-icons-white.png);
  218. }
  219. /* Misc */
  220. .btn.icn-only {
  221. min-width: 14px;
  222. }
  223. .btn.bigicn-only {
  224. min-width: 34px;
  225. }
  226. .m-icon-swapright {
  227. background-position: -27px -10px;
  228. }
  229. .m-icon-swapdown {
  230. background-position: -68px -10px;
  231. }
  232. .m-icon-swapleft {
  233. background-position: -8px -10px;
  234. }
  235. .m-icon-swapup {
  236. background-position: -46px -10px;
  237. }
  238. .m-icon-big-swapright{
  239. background-position: -42px -28px;
  240. }
  241. .m-icon-big-swapdown{
  242. background-position: -115px -28px;
  243. }
  244. .m-icon-big-swapleft{
  245. background-position: -6px -28px;
  246. }
  247. .m-icon-big-swapup{
  248. background-position: -78px -28px;
  249. }
  250. /***
  251. Glyphicons icons
  252. ***/
  253. .btn > .halflings-icon {
  254. margin-top:2px;
  255. margin-right: 2px;
  256. }
  257. .btn.mini > .halflings-icon {
  258. margin-top: -1px;
  259. margin-right: 2px;
  260. }
  261. .btn.icn-only > .halflings-icon {
  262. margin-right: 0px !important;
  263. }
  264. /***
  265. Dropdowns
  266. ***/
  267. .dropdown-menu {
  268. position: absolute;
  269. top: 100%;
  270. left: 0;
  271. z-index: 1000;
  272. display: none;
  273. float: left;
  274. list-style: none;
  275. text-shadow: none;
  276. padding: 0px;
  277. margin:0px;
  278. -webkit-box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
  279. -moz-box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
  280. box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
  281. font-size: 14px;
  282. font-family: "Segoe UI",Helvetica, Arial, sans-serif;
  283. border: 1px solid #ddd;
  284. }
  285. .dropdown:hover .caret,
  286. .open.dropdown .caret {
  287. opacity: 1;
  288. filter: alpha(opacity=100);
  289. }
  290. .dropdown-menu.bottom-up {
  291. top: auto;
  292. bottom: 100%;
  293. margin-bottom: 2px;
  294. }
  295. .dropdown-menu li > a {
  296. padding: 6px 0 6px 13px;
  297. color: #333;
  298. text-decoration: none;
  299. display: block;
  300. clear: both;
  301. font-weight: normal;
  302. line-height: 18px;
  303. white-space: nowrap;
  304. }
  305. .dropdown-menu li > a:hover,
  306. .dropdown-menu .active > a,
  307. .dropdown-menu .active > a:hover {
  308. text-decoration: none;
  309. background-image: none;
  310. background-color: #eee;
  311. color: #333;
  312. filter:none;
  313. }
  314. .dropdown.open .dropdown-toggle {
  315. color: #08c;
  316. background: #ccc;
  317. background: rgba(0, 0, 0, 0.3);
  318. }
  319. /***
  320. Forms
  321. ***/
  322. label.m-wrap,
  323. input.m-wrap,
  324. button.m-wrap,
  325. select.m-wrap,
  326. textarea.m-wrap {
  327. font-size: 14px;
  328. font-weight: normal;
  329. line-height: 20px;
  330. }
  331. input.m-wrap,
  332. button.m-wrap,
  333. select.m-wrap,
  334. textarea.m-wrap {
  335. font-family: "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  336. }
  337. label.m-wrap {
  338. display: block;
  339. margin-bottom: 5px;
  340. }
  341. .uneditable-input,
  342. textarea.m-wrap,
  343. input[type="text"].m-wrap,
  344. input[type="password"].m-wrap,
  345. input[type="datetime"].m-wrap,
  346. input[type="datetime-local"].m-wrap,
  347. input[type="date"].m-wrap,
  348. input[type="month"].m-wrap,
  349. input[type="time"].m-wrap,
  350. input[type="week"].m-wrap,
  351. input[type="number"].m-wrap,
  352. input[type="email"].m-wrap,
  353. input[type="url"].m-wrap,
  354. input[type="search"].m-wrap,
  355. input[type="tel"].m-wrap,
  356. input[type="color"].m-wrap {
  357. -webkit-appearance: none !important;
  358. color: #333333;
  359. outline: 0;
  360. height: 20px;
  361. padding: 6px 6px !important;
  362. line-height: 20px;
  363. font-size: 14px;
  364. font-weight: normal;
  365. vertical-align: top;
  366. background-color: #ffffff;
  367. background-image: none !important;
  368. filter: none !important;
  369. -webkit-box-shadow: none !important;
  370. -moz-box-shadow: none !important;
  371. box-shadow: none !important;
  372. -webkit-border-radius: 0px;
  373. -moz-border-radius: 0px;
  374. border-radius: 0px;
  375. background: transparent;
  376. }
  377. input.m-wrap {
  378. border: 1px solid #e5e5e5;
  379. }
  380. textarea.m-wrap {
  381. height: auto;
  382. }
  383. .uneditable-input.focus,
  384. textarea.m-wrap:focus,
  385. select.m-wrap:focus,
  386. input[type="text"].m-wrap:focus,
  387. input[type="password"].m-wrap:focus,
  388. input[type="datetime"].m-wrap:focus,
  389. input[type="datetime-local"].m-wrap:focus,
  390. input[type="date"].m-wrap:focus,
  391. input[type="month"].m-wrap:focus,
  392. input[type="time"].m-wrap:focus,
  393. input[type="week"].m-wrap:focus,
  394. input[type="number"].m-wrap:focus,
  395. input[type="email"].m-wrap:focus,
  396. input[type="url"].m-wrap:focus,
  397. input[type="search"].m-wrap:focus,
  398. input[type="tel"].m-wrap:focus,
  399. input[type="color"].m-wrap:focus,
  400. .m-uneditable-input:focus {
  401. border-color: #999999;
  402. outline: 0 !important;
  403. /* IE6-9 */
  404. -webkit-box-shadow: none;
  405. -moz-box-shadow: none;
  406. box-shadow: none;
  407. }
  408. input[disabled],
  409. select[disabled],
  410. textarea[disabled] {
  411. cursor: not-allowed;
  412. background-color: #F4F4F4 !important;
  413. }
  414. input[readonly],
  415. select[readonly],
  416. textarea[readonly] {
  417. cursor: not-allowed;
  418. background-color: #F9F9F9 !important;
  419. }
  420. input[type="radio"][disabled],
  421. input[type="checkbox"][disabled],
  422. input[type="radio"][readonly],
  423. input[type="checkbox"][readonly] {
  424. background-color: transparent;
  425. }
  426. input[type="radio"].m-wrap,
  427. input[type="checkbox"].m-wrap {
  428. margin: 4px 0 0;
  429. margin-top: 1px \9;
  430. *margin-top: 0;
  431. line-height: normal;
  432. cursor: pointer;
  433. -webkit-box-sizing: border-box;
  434. -moz-box-sizing: border-box;
  435. box-sizing: border-box;
  436. }
  437. select.m-wrap,
  438. input[type="file"].m-wrap {
  439. height: 34px !important;
  440. /* In IE7, the height of the select element cannot be changed by height, only font-size */
  441. *margin-top: 4px;
  442. /* For IE7, add top margin to align select with labels */
  443. line-height: 30px;
  444. }
  445. select.m-wrap {
  446. width: 220px;
  447. background-color: #ffffff;
  448. background-image: none !important;
  449. filter: none !important;
  450. border: 1px solid #e5e5e5;
  451. outline: none;
  452. }
  453. select[multiple].m-wrap,
  454. select[size].m-wrap {
  455. height: auto !important;
  456. }
  457. select.m-wrap:focus,
  458. input[type="file"].m-wrap:focus,
  459. input[type="radio"].m-wrap:focus,
  460. input[type="checkbox"].m-wrap:focus {
  461. outline: thin dotted #333333;
  462. outline: 5px auto -webkit-focus-ring-color;
  463. outline-offset: -2px;
  464. -webkit-box-shadow: none !important;
  465. -moz-box-shadow: none !important;
  466. box-shadow: none !important;
  467. }
  468. input[class*="span"].m-wrap
  469. {
  470. float: none;
  471. height: 34px !important;
  472. margin-left: 0;
  473. }
  474. select[class*="span"].m-wrap,
  475. textarea[class*="span"].m-wrap
  476. {
  477. float: none;
  478. margin-left: 0;
  479. }
  480. .input-prepend,
  481. .input-append {
  482. border: 0;
  483. display: inline-block;
  484. }
  485. .input-append .add-on,
  486. .input-prepend .add-on {
  487. display: inline-block;
  488. width: auto;
  489. height: 24px;
  490. min-width: 16px;
  491. padding: 4px 5px;
  492. font-size: 14px;
  493. font-weight: normal;
  494. line-height: 24px;
  495. text-align: center;
  496. text-shadow: 0 1px 0 #ffffff;
  497. background-color: #e5e5e5;
  498. border: 1px solid #e5e5e5;
  499. }
  500. .input-append .add-on > .halflings-icon,
  501. .input-prepend .add-on > i,
  502. .input-prepend .add-on > [class^="icon-"]
  503. {
  504. margin-top: 5px;
  505. margin-left: 3px;
  506. }
  507. .input-append .add-on > .halflings-icon
  508. .input-append .add-on > i,
  509. .input-append .add-on > [class^="icon-"]
  510. {
  511. margin-top: 5px;
  512. margin-left: 0px;
  513. }
  514. .input-append .m-wrap,
  515. .input-append .m-wrap:focus {
  516. border-right: 0 !important;
  517. margin-right: 1px;
  518. }
  519. .input-prepend input,
  520. .input-prepend input:focus {
  521. border-left: 0 !important;
  522. margin-left: 1px;
  523. }
  524. .input-append input[class*="span"],
  525. .input-prepend input[class*="span"]
  526. {
  527. display: inline-block !important;
  528. }
  529. .m-wrap.xsmall {
  530. width: 50px !important;
  531. }
  532. .m-wrap.small {
  533. width: 120px !important;
  534. }
  535. .m-wrap.medium {
  536. width: 206px !important;
  537. }
  538. .m-wrap.large {
  539. width: 320px !important;
  540. }
  541. .m-wrap.huge {
  542. width: 480px !important;
  543. font-size: 24px !important;
  544. height: 36px !important;
  545. line-height: 36px !important;
  546. padding: 22px 8px !important;
  547. }
  548. select.m-wrap.xsmall {
  549. width: 64px !important;
  550. }
  551. select.m-wrap.small {
  552. width: 134px !important;
  553. }
  554. select.m-wrap.medium {
  555. width: 220px !important;
  556. }
  557. select.m-wrap.large {
  558. width: 334px !important;
  559. }
  560. @media (max-width: 480px) {
  561. .m-wrap.small {
  562. width: 100px !important;
  563. }
  564. .m-wrap.medium {
  565. width: 150px !important;
  566. }
  567. .m-wrap.large {
  568. width: 200px !important;
  569. }
  570. .m-wrap.huge {
  571. width: 246px !important;
  572. font-size: 24px !important;
  573. height: 36px !important;
  574. line-height: 36px !important;
  575. padding: 22px 8px !important;
  576. }
  577. select.m-wrap.small {
  578. width: 114px !important;
  579. }
  580. select.m-wrap.medium {
  581. width: 164px !important;
  582. }
  583. select.m-wrap.large {
  584. width: 214px !important;
  585. }
  586. }
  587. /***
  588. Custom label and badges
  589. ***/
  590. .label,
  591. .badge {
  592. font-weight: 300;
  593. }
  594. .label-success,
  595. .badge-success {
  596. background-color: #3cc051;
  597. background-image: none !important;
  598. text-shadow: none !important;
  599. }
  600. .label-warning,
  601. .badge-warning {
  602. background-color: #fcb322;
  603. background-image: none !important;
  604. text-shadow: none !important;
  605. }
  606. .label-important,
  607. .badge-important {
  608. background-color: #ed4e2a;
  609. background-image: none !important;
  610. text-shadow: none !important;
  611. }
  612. .label-info,
  613. .badge-info {
  614. background-color: #57b5e3;
  615. background-image: none !important;
  616. text-shadow: none !important;
  617. }
  618. .label-mini {
  619. font-size: 11px;
  620. font-weight: 300;
  621. }
  622. .label-default {
  623. background-color: #999 !important;
  624. text-shadow: none !important;
  625. }
  626. /***
  627. Bootstrap modal
  628. ***/
  629. .modal-header {
  630. border-bottom: 1px solid #EFEFEF;
  631. }
  632. .modal-header h3{
  633. font-weight: 300;
  634. }
  635. .modal-footer {
  636. border-top: 0;
  637. }
  638. .modal {
  639. z-index: 10050 !important;
  640. }
  641. .modal-backdrop {
  642. z-index: 10049 !important;
  643. }
  644. .modal-backdrop,
  645. .modal-backdrop.fade.in {
  646. background-color: #333 !important;
  647. }
  648. .modal-open .header .container-fluid {
  649. padding-right: 37px;
  650. }