You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

583 lines
23 KiB

10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
  1. /*
  2. * # Semantic - Checkbox
  3. * http://github.com/semantic-org/semantic-ui/
  4. *
  5. *
  6. * Copyright 2014 Contributor
  7. * Released under the MIT license
  8. * http://opensource.org/licenses/MIT
  9. *
  10. */
  11. /*******************************
  12. Theme
  13. *******************************/
  14. /*
  15. */
  16. /*******************************
  17. Folders
  18. *******************************/
  19. /* Path to theme packages */
  20. /* Path to site override folder */
  21. /*******************************
  22. Themes
  23. *******************************/
  24. /* To override a theme for an individual element
  25. specify theme name below
  26. Be sure to update the user folder name (see README)
  27. */
  28. /* Global */
  29. /* Elements */
  30. /* Collections */
  31. /* Modules */
  32. /* Views */
  33. /*******************************
  34. Import Directives
  35. *******************************/
  36. /*------------------
  37. Load Default
  38. -------------------*/
  39. /*******************************
  40. Site Settings
  41. *******************************/
  42. /*-------------------
  43. Paths
  44. --------------------*/
  45. /*-------------------
  46. Fonts
  47. --------------------*/
  48. /*-------------------
  49. Site Colors
  50. --------------------*/
  51. /*--- Colors ---*/
  52. /*-------------------
  53. Page
  54. --------------------*/
  55. /*-------------------
  56. Background Colors
  57. --------------------*/
  58. /* Used for differentiating neutrals */
  59. /* Used for differentiating layers */
  60. /*-------------------
  61. Grid
  62. --------------------*/
  63. /*-------------------
  64. Breakpoints
  65. --------------------*/
  66. /*******************************
  67. Power-User
  68. *******************************/
  69. /*-------------------
  70. Icons
  71. --------------------*/
  72. /* Max Width of Icon */
  73. /*-------------------
  74. Easing
  75. --------------------*/
  76. /*--- Light Variations ---*/
  77. /*--- Neutrals ---*/
  78. /*--- Colored Backgrounds ---*/
  79. /*--- Colored Text ---*/
  80. /*--- Colored Headers ---*/
  81. /*-------------------
  82. Emotive Colors
  83. --------------------*/
  84. /* Mood */
  85. /* Solid Background Color */
  86. /* Status */
  87. /* Darkened Headers */
  88. /*-------------------
  89. Neutral Text
  90. --------------------*/
  91. /*-------------------
  92. Brand Colors
  93. --------------------*/
  94. /*-------------------
  95. Grid Columns
  96. --------------------*/
  97. /*-------------------
  98. Borders
  99. --------------------*/
  100. /*-------------------
  101. Sizes
  102. --------------------*/
  103. /*-------------------
  104. Transitions
  105. --------------------*/
  106. /*******************************
  107. States
  108. *******************************/
  109. /*-------------------
  110. Disabled
  111. --------------------*/
  112. /*-------------------
  113. Hover
  114. --------------------*/
  115. /*--- Colors ---*/
  116. /*--- Emotive ---*/
  117. /*--- Neutrals ---*/
  118. /*-------------------
  119. Down (:active)
  120. --------------------*/
  121. /*--- Colors ---*/
  122. /*--- Emotive ---*/
  123. /*--- Neutrals ---*/
  124. /*-------------------
  125. Active
  126. --------------------*/
  127. /*--- Standard ---*/
  128. /*--- Emotive ---*/
  129. /*--- Neutrals ---*/
  130. /*******************************
  131. Checkbox
  132. *******************************/
  133. /* Label */
  134. /* Checkbox */
  135. /* Checkmark */
  136. /*-------------------
  137. Coupling
  138. --------------------*/
  139. /*-------------------
  140. States
  141. --------------------*/
  142. /* Disabled */
  143. /*-------------------
  144. Types
  145. --------------------*/
  146. /* Radio */
  147. /* Slider & Toggle Handle */
  148. /* Slider */
  149. /* Toggle */
  150. /*-------------------
  151. Variations
  152. --------------------*/
  153. /*------------------
  154. Load Theme
  155. -------------------*/
  156. /*------------------
  157. Load Site
  158. -------------------*/
  159. /*******************************
  160. User Global Variables
  161. *******************************/
  162. /*******************************
  163. User Variable Overrides
  164. *******************************/
  165. /*------------------
  166. Override Mix-in
  167. -------------------*/
  168. /*******************************
  169. Checkbox
  170. *******************************/
  171. /*--------------
  172. Content
  173. ---------------*/
  174. .ui.checkbox {
  175. position: relative;
  176. display: inline-block;
  177. height: 17px;
  178. font-size: 1rem;
  179. line-height: 15px;
  180. min-width: 17px;
  181. -webkit-backface-visibility: hidden;
  182. backface-visibility: hidden;
  183. outline: none;
  184. vertical-align: middle;
  185. }
  186. .ui.checkbox input {
  187. position: absolute;
  188. top: 0px;
  189. left: 0px;
  190. opacity: 0;
  191. outline: none;
  192. z-index: -1;
  193. }
  194. /*--------------
  195. Box
  196. ---------------*/
  197. .ui.checkbox .box,
  198. .ui.checkbox label {
  199. cursor: pointer;
  200. padding-left: 1.75em;
  201. outline: none;
  202. }
  203. .ui.checkbox label {
  204. font-size: 1em;
  205. }
  206. .ui.checkbox .box:before,
  207. .ui.checkbox label:before {
  208. position: absolute;
  209. line-height: 1;
  210. width: 17px;
  211. height: 17px;
  212. top: 0em;
  213. left: 0em;
  214. content: '';
  215. background: #ffffff;
  216. border-radius: 0.25em;
  217. -webkit-transition: background-color 0.3s ease, border 0.3s ease, box-shadow 0.3s ease;
  218. transition: background-color 0.3s ease, border 0.3s ease, box-shadow 0.3s ease;
  219. border: 1px solid rgba(0, 0, 0, 0.1);
  220. }
  221. /*--------------
  222. Checkmark
  223. ---------------*/
  224. .ui.checkbox .box:after,
  225. .ui.checkbox label:after {
  226. position: absolute;
  227. top: 0px;
  228. left: 0px;
  229. line-height: 17px;
  230. width: 17px;
  231. height: 17px;
  232. text-align: center;
  233. opacity: 0;
  234. color: rgba(0, 0, 0, 0.8);
  235. -webkit-transition: all 0.1s ease;
  236. transition: all 0.1s ease;
  237. }
  238. /*--------------
  239. Label
  240. ---------------*/
  241. /* Inside */
  242. .ui.checkbox label,
  243. .ui.checkbox + label {
  244. cursor: pointer;
  245. color: rgba(0, 0, 0, 0.8);
  246. -webkit-transition: color 0.2s ease;
  247. transition: color 0.2s ease;
  248. -webkit-user-select: none;
  249. -moz-user-select: none;
  250. -ms-user-select: none;
  251. user-select: none;
  252. }
  253. /* Outside */
  254. .ui.checkbox + label {
  255. vertical-align: middle;
  256. }
  257. /*******************************
  258. States
  259. *******************************/
  260. /*--------------
  261. Hover
  262. ---------------*/
  263. .ui.checkbox .box:hover::before,
  264. .ui.checkbox label:hover::before {
  265. background: #ffffff;
  266. border: 1px solid rgba(0, 0, 0, 0.2);
  267. }
  268. .ui.checkbox label:hover,
  269. .ui.checkbox + label:hover {
  270. color: rgba(0, 0, 0, 0.8);
  271. }
  272. /*--------------
  273. Down
  274. ---------------*/
  275. .ui.checkbox .box:active::before,
  276. .ui.checkbox label:active::before {
  277. background: #f5f5f5;
  278. border: 1px solid 1px solid rgba(0, 0, 0, 0.2);
  279. }
  280. .ui.checkbox input:active ~ label {
  281. color: rgba(0, 0, 0, 0.8);
  282. }
  283. /*--------------
  284. Focus
  285. ---------------*/
  286. .ui.checkbox input:focus ~ .box:before,
  287. .ui.checkbox input:focus ~ label:before {
  288. background: #f5f5f5;
  289. border: 1px solid 1px solid rgba(0, 0, 0, 0.2);
  290. }
  291. .ui.checkbox input:focus ~ label {
  292. color: rgba(0, 0, 0, 0.8);
  293. }
  294. /*--------------
  295. Active
  296. ---------------*/
  297. .ui.checkbox input:checked ~ .box:after,
  298. .ui.checkbox input:checked ~ label:after {
  299. opacity: 1;
  300. }
  301. /*--------------
  302. Disabled
  303. ---------------*/
  304. .ui.disabled.checkbox .box:after,
  305. .ui.disabled.checkbox label,
  306. .ui.checkbox input[disabled] ~ .box:after,
  307. .ui.checkbox input[disabled] ~ label {
  308. opacity: 0.3;
  309. color: rgba(0, 0, 0, 0.3);
  310. }
  311. /*******************************
  312. Types
  313. *******************************/
  314. /*--------------
  315. Radio
  316. ---------------*/
  317. .ui.radio.checkbox {
  318. height: 16px;
  319. }
  320. /* Box */
  321. .ui.radio.checkbox .box:before,
  322. .ui.radio.checkbox label:before {
  323. width: 16px;
  324. height: 16px;
  325. border-radius: 500rem;
  326. -webkit-transform: none;
  327. -ms-transform: none;
  328. transform: none;
  329. }
  330. /* Circle */
  331. .ui.radio.checkbox .box:after,
  332. .ui.radio.checkbox label:after {
  333. border: none;
  334. width: 16px;
  335. height: 16px;
  336. line-height: 16px;
  337. top: 0px;
  338. left: 0px;
  339. font-size: 9px;
  340. }
  341. /*--------------
  342. Slider
  343. ---------------*/
  344. .ui.slider.checkbox {
  345. cursor: pointer;
  346. height: 1.5rem;
  347. }
  348. .ui.slider.checkbox .box,
  349. .ui.slider.checkbox label {
  350. padding-left: 4.5rem;
  351. line-height: 1rem;
  352. color: rgba(0, 0, 0, 0.4);
  353. }
  354. /* Line */
  355. .ui.slider.checkbox .box:before,
  356. .ui.slider.checkbox label:before {
  357. cursor: pointer;
  358. display: block;
  359. position: absolute;
  360. content: '';
  361. top: 0.4rem;
  362. left: 0em;
  363. z-index: 1;
  364. border: none !important;
  365. background-color: rgba(0, 0, 0, 0.05);
  366. width: 3.5rem;
  367. height: 0.25rem;
  368. -webkit-transform: none;
  369. -ms-transform: none;
  370. transform: none;
  371. border-radius: 500rem;
  372. -webkit-transition: background 0.3s ease
  373. ;
  374. transition: background 0.3s ease
  375. ;
  376. }
  377. /* Handle */
  378. .ui.slider.checkbox .box:after,
  379. .ui.slider.checkbox label:after {
  380. background: #ffffff -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.05));
  381. background: #ffffff linear-gradient(transparent, rgba(0, 0, 0, 0.05));
  382. position: absolute;
  383. content: '';
  384. opacity: 1;
  385. z-index: 2;
  386. border: none;
  387. box-shadow: 0px 1px 2px 0 rgba(0, 0, 0, 0.05), 0px 0px 0px 1px rgba(0, 0, 0, 0.1) inset;
  388. width: 1.5rem;
  389. height: 1.5rem;
  390. top: -0.25rem;
  391. left: 0em;
  392. -webkit-transform: none;
  393. -ms-transform: none;
  394. transform: none;
  395. border-radius: 500rem;
  396. -webkit-transition: left 0.3s ease 0s
  397. ;
  398. transition: left 0.3s ease 0s
  399. ;
  400. }
  401. /* Focus */
  402. .ui.slider.checkbox input:focus ~ .box:before,
  403. .ui.slider.checkbox input:focus ~ label:before {
  404. background-color: rgba(0, 0, 0, 0.1);
  405. border: none;
  406. }
  407. /* Hover */
  408. .ui.slider.checkbox .box:hover,
  409. .ui.slider.checkbox label:hover {
  410. color: rgba(0, 0, 0, 0.8);
  411. }
  412. .ui.slider.checkbox .box:hover::before,
  413. .ui.slider.checkbox label:hover::before {
  414. background: rgba(0, 0, 0, 0.1);
  415. }
  416. /* Active */
  417. .ui.slider.checkbox input:checked ~ .box,
  418. .ui.slider.checkbox input:checked ~ label {
  419. color: rgba(0, 0, 0, 0.8);
  420. }
  421. .ui.slider.checkbox input:checked ~ .box:before,
  422. .ui.slider.checkbox input:checked ~ label:before {
  423. background-color: rgba(0, 0, 0, 0.1);
  424. }
  425. .ui.slider.checkbox input:checked ~ .box:after,
  426. .ui.slider.checkbox input:checked ~ label:after {
  427. left: 2rem;
  428. }
  429. /*--------------
  430. Toggle
  431. ---------------*/
  432. .ui.toggle.checkbox {
  433. cursor: pointer;
  434. height: 1.5rem;
  435. }
  436. .ui.toggle.checkbox .box,
  437. .ui.toggle.checkbox label {
  438. height: 1.5rem;
  439. padding-left: 4.5rem;
  440. line-height: 1.5rem;
  441. color: rgba(0, 0, 0, 0.8);
  442. }
  443. /* Switch */
  444. .ui.toggle.checkbox .box:before,
  445. .ui.toggle.checkbox label:before {
  446. cursor: pointer;
  447. display: block;
  448. position: absolute;
  449. content: '';
  450. top: 0rem;
  451. z-index: 1;
  452. border: none;
  453. background-color: rgba(0, 0, 0, 0.05);
  454. width: 3.5rem;
  455. height: 1.5rem;
  456. border-radius: 500rem;
  457. }
  458. /* Handle */
  459. .ui.toggle.checkbox .box:after,
  460. .ui.toggle.checkbox label:after {
  461. background: #ffffff -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.05));
  462. background: #ffffff linear-gradient(transparent, rgba(0, 0, 0, 0.05));
  463. position: absolute;
  464. content: '';
  465. opacity: 1;
  466. z-index: 2;
  467. border: none;
  468. box-shadow: 0px 1px 2px 0 rgba(0, 0, 0, 0.05), 0px 0px 0px 1px rgba(0, 0, 0, 0.1) inset;
  469. width: 1.5rem;
  470. height: 1.5rem;
  471. top: 0rem;
  472. left: 0em;
  473. border-radius: 500rem;
  474. -webkit-transition: background 0.3s ease 0s,
  475. left 0.3s ease 0s
  476. ;
  477. transition: background 0.3s ease 0s,
  478. left 0.3s ease 0s
  479. ;
  480. }
  481. .ui.toggle.checkbox input ~ .box:after,
  482. .ui.toggle.checkbox input ~ label:after {
  483. left: -0.05rem;
  484. }
  485. /* Focus */
  486. .ui.toggle.checkbox input:focus ~ .box:before,
  487. .ui.toggle.checkbox input:focus ~ label:before {
  488. background-color: rgba(0, 0, 0, 0.1);
  489. border: none;
  490. }
  491. /* Hover */
  492. .ui.toggle.checkbox .box:hover::before,
  493. .ui.toggle.checkbox label:hover::before {
  494. background-color: rgba(0, 0, 0, 0.1);
  495. border: none;
  496. }
  497. /* Active */
  498. .ui.toggle.checkbox input:checked ~ .box,
  499. .ui.toggle.checkbox input:checked ~ label {
  500. color: #2ecc40;
  501. }
  502. .ui.toggle.checkbox input:checked ~ .box:before,
  503. .ui.toggle.checkbox input:checked ~ label:before {
  504. background-color: #2ecc40;
  505. }
  506. .ui.toggle.checkbox input:checked ~ .box:after,
  507. .ui.toggle.checkbox input:checked ~ label:after {
  508. left: 2.05rem;
  509. }
  510. /*******************************
  511. Overrides
  512. *******************************/
  513. @font-face {
  514. font-family: 'Checkbox';
  515. src: url('data:application/octet-stream;base64,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') format('woff'), url('data:application/octet-stream;base64,AAEAAAAOAIAAAwBgT1MvMj3hSQEAAADsAAAAVmNtYXDQEhm3AAABRAAAAUpjdnQgBkn/lAAABuwAAAAcZnBnbYoKeDsAAAcIAAAJkWdhc3AAAAAQAAAG5AAAAAhnbHlm32cEdgAAApAAAAC2aGVhZAErPHsAAANIAAAANmhoZWEHUwNNAAADgAAAACRobXR4CykAAAAAA6QAAAAMbG9jYQA4AFsAAAOwAAAACG1heHAApgm8AAADuAAAACBuYW1lzJ0aHAAAA9gAAALNcG9zdK69QJgAAAaoAAAAO3ByZXCSoZr/AAAQnAAAAFYAAQO4AZAABQAIAnoCvAAAAIwCegK8AAAB4AAxAQIAAAIABQMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUGZFZABA6ADoAQNS/2oAWgMLAE8AAAABAAAAAAAAAAAAAwAAAAMAAAAcAAEAAAAAAEQAAwABAAAAHAAEACgAAAAGAAQAAQACAADoAf//AAAAAOgA//8AABgBAAEAAAAAAAAAAAEGAAAAAAAAAAAAAAAAA
  516. }
  517. .ui.checkbox label:before,
  518. .ui.checkbox .box:before,
  519. .ui.checkbox label:after,
  520. .ui.checkbox .box:after {
  521. font-family: 'Checkbox';
  522. }
  523. .ui.checkbox label:after,
  524. .ui.checkbox .box:after {
  525. content: '\e800';
  526. /* '' */
  527. }
  528. /* Radio Checkbox */
  529. .ui.radio.checkbox .box:after,
  530. .ui.radio.checkbox label:after {
  531. content: '';
  532. /* '' */
  533. -webkit-transform: scale(0.5);
  534. -ms-transform: scale(0.5);
  535. transform: scale(0.5);
  536. width: 16px;
  537. height: 16px;
  538. border-radius: 500rem;
  539. background-color: rgba(0, 0, 0, 0.8);
  540. }
  541. .icon-check:before {
  542. content: '\e800';
  543. }
  544. .icon-circle:before {
  545. content: '\e801';
  546. }
  547. /* '' */
  548. .icon-ok-circled:before {
  549. content: '\e806';
  550. }
  551. /* '' */
  552. .icon-ok-circle:before {
  553. content: '\e805';
  554. }
  555. /* '' */
  556. .icon-cancel-circle:before {
  557. content: '\e807';
  558. }
  559. /* '' */
  560. .icon-cancel-circle-1:before {
  561. content: '\e804';
  562. }
  563. /* '' */
  564. .icon-empty-circle:before {
  565. content: '\e802';
  566. }
  567. /* '' */
  568. .icon-radio:before {
  569. content: '\e803';
  570. }
  571. /* '' */
  572. /*******************************
  573. Overrides
  574. *******************************/