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.

1752 lines
48 KiB

  1. /*
  2. * # Semantic - Button
  3. * http://github.com/semantic-org/semantic-ui/
  4. *
  5. *
  6. * Copyright 2013 Contributors
  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. Global Variables
  41. *******************************/
  42. /*-------------------
  43. Paths
  44. --------------------*/
  45. /*-------------------
  46. Page
  47. --------------------*/
  48. /*-------------------
  49. Breakpoints
  50. --------------------*/
  51. /*-------------------
  52. Fonts
  53. --------------------*/
  54. /*-------------------
  55. Icons
  56. --------------------*/
  57. /* Width of largest icon */
  58. /*******************************
  59. BG Colors
  60. *******************************/
  61. /*******************************
  62. Colors
  63. *******************************/
  64. /*-------------------
  65. Background
  66. --------------------*/
  67. /*--- Colors ---*/
  68. /*--- Emotive ---*/
  69. /*--- Neutrals ---*/
  70. /*-------------------
  71. Emotive
  72. --------------------*/
  73. /*-------------------
  74. Text Colors
  75. --------------------*/
  76. /*-------------------
  77. Brand Colors
  78. --------------------*/
  79. /*-------------------
  80. Borders
  81. --------------------*/
  82. /*-------------------
  83. Sizes
  84. --------------------*/
  85. /*-------------------
  86. Transitions
  87. --------------------*/
  88. /*******************************
  89. States
  90. *******************************/
  91. /*-------------------
  92. Disabled
  93. --------------------*/
  94. /*-------------------
  95. Hover
  96. --------------------*/
  97. /*--- Colors ---*/
  98. /*--- Emotive ---*/
  99. /*--- Neutrals ---*/
  100. /*-------------------
  101. Down (:active)
  102. --------------------*/
  103. /*--- Colors ---*/
  104. /*--- Emotive ---*/
  105. /*--- Neutrals ---*/
  106. /*-------------------
  107. Active
  108. --------------------*/
  109. /*--- Standard ---*/
  110. /*--- Emotive ---*/
  111. /*--- Neutrals ---*/
  112. /*-------------------
  113. Globals Used
  114. --------------------*/
  115. /*-------------------
  116. Button
  117. --------------------*/
  118. /* transitions */
  119. /* Padding */
  120. /* Shadow */
  121. /* Icon */
  122. /* Loader */
  123. /*-------------------
  124. Group
  125. --------------------*/
  126. /*-------------------
  127. States
  128. --------------------*/
  129. /*-------------------
  130. Types
  131. --------------------*/
  132. /* Or */
  133. /* Icon */
  134. /* Labeled Icon */
  135. /* Basic */
  136. /*-------------------
  137. Variations
  138. --------------------*/
  139. /* Colors */
  140. /* Compact */
  141. /* Attached */
  142. /* Floated */
  143. /* Animated */
  144. /* Sizing */
  145. /*------------------
  146. Load Theme
  147. -------------------*/
  148. /*------------------
  149. Load Site
  150. -------------------*/
  151. /*******************************
  152. User Global Variables
  153. *******************************/
  154. /*******************************
  155. User Variable Overrides
  156. *******************************/
  157. /*------------------
  158. Override Mix-in
  159. -------------------*/
  160. /*******************************
  161. Button
  162. *******************************/
  163. /* Prototype */
  164. .ui.button {
  165. cursor: pointer;
  166. display: inline-block;
  167. vertical-align: middle;
  168. min-height: 1em;
  169. outline: none;
  170. border: none;
  171. background-color: #fafafa;
  172. color: rgba(0, 0, 0, 0.6);
  173. margin: 0em 0.25em 0em 0em;
  174. padding: 0.8em 1.5em 0.8em;
  175. font-family: Open Sans, Helvetica Neue, Helvetica, Arial, sans-serif;
  176. text-transform: none;
  177. text-shadow: none;
  178. font-weight: bold;
  179. line-height: 1;
  180. font-style: normal;
  181. text-align: center;
  182. text-decoration: none;
  183. background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.09)));
  184. background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.09));
  185. background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.09));
  186. border-radius: 0.25em;
  187. -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1) inset, 0px 0em 0px 0px rgba(0, 0, 0, 0.1) inset;
  188. box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1) inset, 0px 0em 0px 0px rgba(0, 0, 0, 0.1) inset;
  189. -webkit-user-select: none;
  190. -moz-user-select: none;
  191. -ms-user-select: none;
  192. user-select: none;
  193. -webkit-box-sizing: border-box;
  194. -moz-box-sizing: border-box;
  195. box-sizing: border-box;
  196. -webkit-transition: opacity 0.25s ease, background-color 0.25s ease, color 0.25s ease, background 0.25s ease, -webkit-box-shadow 0.25s ease;
  197. transition: opacity 0.25s ease, background-color 0.25s ease, color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  198. }
  199. /*******************************
  200. States
  201. *******************************/
  202. /*--------------
  203. Hover
  204. ---------------*/
  205. .ui.button:hover {
  206. background-color: '';
  207. background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.13)));
  208. background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.13));
  209. background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.13));
  210. color: rgba(0, 0, 0, 0.8);
  211. }
  212. .ui.button:hover .icon {
  213. opacity: 0.85;
  214. }
  215. /*--------------
  216. Focus
  217. ---------------*/
  218. .ui.button:focus {
  219. background-color: '';
  220. background-image: '';
  221. color: rgba(0, 0, 0, 0.8);
  222. }
  223. .ui.button:focus .icon {
  224. opacity: 0.85;
  225. }
  226. /*--------------
  227. Down
  228. ---------------*/
  229. .ui.button:active,
  230. .ui.active.button:active {
  231. background-color: #f1f1f1;
  232. background-image: '';
  233. color: rgba(0, 0, 0, 0.8);
  234. -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.05) inset;
  235. box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.05) inset;
  236. }
  237. /*--------------
  238. Active
  239. ---------------*/
  240. .ui.active.button {
  241. background-color: #dddddd;
  242. background-image: none;
  243. -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.05) inset;
  244. box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.05) inset;
  245. color: rgba(0, 0, 0, 0.6);
  246. }
  247. .ui.button.active:hover {
  248. background-color: #dddddd;
  249. background-image: none;
  250. }
  251. .ui.button.active:active {
  252. background-color: #dddddd;
  253. background-image: none;
  254. }
  255. /*--------------
  256. Loading
  257. ---------------*/
  258. .ui.loading.button {
  259. position: relative;
  260. cursor: default;
  261. background-color: #ffffff !important;
  262. text-shadow: none !important;
  263. color: transparent !important;
  264. -webkit-transition: all 0s linear;
  265. transition: all 0s linear;
  266. }
  267. .ui.loading.button:after {
  268. position: absolute;
  269. top: 0em;
  270. left: 0em;
  271. width: 100%;
  272. height: 100%;
  273. content: '';
  274. background: transparent url("../../themes/packages/default/assets/images/loader-mini.gif") no-repeat 50% 50%;
  275. }
  276. .ui.labeled.icon.loading.button .icon {
  277. background-color: transparent;
  278. -webkit-box-shadow: none;
  279. box-shadow: none;
  280. }
  281. /*-------------------
  282. Disabled
  283. --------------------*/
  284. .ui.buttons .disabled.button,
  285. .ui.disabled.button,
  286. .ui.disabled.button:hover,
  287. .ui.disabled.button.active {
  288. cursor: default;
  289. background-color: #dcddde !important;
  290. color: rgba(0, 0, 0, 0.4) !important;
  291. opacity: 0.3 !important;
  292. background-image: none !important;
  293. -webkit-box-shadow: none !important;
  294. box-shadow: none !important;
  295. }
  296. /*******************************
  297. Types
  298. *******************************/
  299. /*-------------------
  300. Animated
  301. --------------------*/
  302. .ui.animated.button {
  303. position: relative;
  304. overflow: hidden;
  305. }
  306. .ui.animated.button .visible.content {
  307. position: relative;
  308. }
  309. .ui.animated.button .hidden.content {
  310. position: absolute;
  311. width: 100%;
  312. }
  313. /* Horizontal */
  314. .ui.animated.button .visible.content,
  315. .ui.animated.button .hidden.content {
  316. -webkit-transition: right 0.3s ease 0s;
  317. transition: right 0.3s ease 0s;
  318. }
  319. .ui.animated.button .visible.content {
  320. left: auto;
  321. right: 0%;
  322. }
  323. .ui.animated.button .hidden.content {
  324. top: 50%;
  325. left: auto;
  326. right: -100%;
  327. margin-top: -0.5em;
  328. }
  329. .ui.animated.button:hover .visible.content {
  330. left: auto;
  331. right: 200%;
  332. }
  333. .ui.animated.button:hover .hidden.content {
  334. left: auto;
  335. right: 0%;
  336. }
  337. /* Vertical */
  338. .ui.vertical.animated.button .visible.content,
  339. .ui.vertical.animated.button .hidden.content {
  340. -webkit-transition: top 0.3s ease, -webkit-transform 0.3s ease;
  341. transition: top 0.3s ease, transform 0.3s ease;
  342. }
  343. .ui.vertical.animated.button .visible.content {
  344. -webkit-transform: translateY(0%);
  345. -ms-transform: translateY(0%);
  346. transform: translateY(0%);
  347. right: auto;
  348. }
  349. .ui.vertical.animated.button .hidden.content {
  350. top: -100%;
  351. left: 0%;
  352. right: auto;
  353. }
  354. .ui.vertical.animated.button:hover .visible.content {
  355. -webkit-transform: translateY(200%);
  356. -ms-transform: translateY(200%);
  357. transform: translateY(200%);
  358. right: auto;
  359. }
  360. .ui.vertical.animated.button:hover .hidden.content {
  361. top: 50%;
  362. right: auto;
  363. }
  364. /* Fade */
  365. .ui.fade.animated.button .visible.content,
  366. .ui.fade.animated.button .hidden.content {
  367. -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  368. transition: opacity 0.3s ease, transform 0.3s ease;
  369. }
  370. .ui.fade.animated.button .visible.content {
  371. left: auto;
  372. right: auto;
  373. opacity: 1;
  374. -webkit-transform: scale(1);
  375. -ms-transform: scale(1);
  376. transform: scale(1);
  377. }
  378. .ui.fade.animated.button .hidden.content {
  379. opacity: 0;
  380. left: 0%;
  381. right: auto;
  382. -webkit-transform: scale(1.5);
  383. -ms-transform: scale(1.5);
  384. transform: scale(1.5);
  385. }
  386. .ui.fade.animated.button:hover .visible.content {
  387. left: auto;
  388. right: auto;
  389. opacity: 0;
  390. -webkit-transform: scale(0.75);
  391. -ms-transform: scale(0.75);
  392. transform: scale(0.75);
  393. }
  394. .ui.fade.animated.button:hover .hidden.content {
  395. left: 0%;
  396. right: auto;
  397. opacity: 1;
  398. -webkit-transform: scale(1);
  399. -ms-transform: scale(1);
  400. transform: scale(1);
  401. }
  402. /*-------------------
  403. Inverted
  404. --------------------*/
  405. .ui.inverted.button {
  406. -webkit-box-shadow: 0px 0px 0px 2px #ffffff inset !important;
  407. box-shadow: 0px 0px 0px 2px #ffffff inset !important;
  408. background: transparent none;
  409. color: #ffffff;
  410. text-shadow: none !important;
  411. }
  412. .ui.inverted.button:hover {
  413. background: #ffffff none;
  414. -webkit-box-shadow: 0px 0px 0px 2px #ffffff inset !important;
  415. box-shadow: 0px 0px 0px 2px #ffffff inset !important;
  416. color: rgba(0, 0, 0, 0.6);
  417. }
  418. /*-------------------
  419. Primary
  420. --------------------*/
  421. .ui.primary.buttons .button,
  422. .ui.primary.button {
  423. background-color: #39cccc;
  424. color: #ffffff;
  425. text-shadow: none;
  426. background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(0, 0, 0, 0.1)));
  427. background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.1));
  428. background-image: linear-gradient(rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.1));
  429. -webkit-box-shadow: none;
  430. box-shadow: none;
  431. }
  432. .ui.primary.buttons .button:hover,
  433. .ui.primary.button:hover {
  434. background-color: #4dd1d1;
  435. color: #ffffff;
  436. text-shadow: none;
  437. }
  438. .ui.primary.buttons .button:active,
  439. .ui.primary.button:active {
  440. background-color: #2eb3b3;
  441. color: #ffffff;
  442. text-shadow: none;
  443. }
  444. .ui.primary.buttons .active.button,
  445. .ui.primary.button.active {
  446. background-color: #30bbbb;
  447. color: #ffffff;
  448. text-shadow: none;
  449. }
  450. /*-------------------
  451. Secondary
  452. --------------------*/
  453. .ui.secondary.buttons .button,
  454. .ui.secondary.button {
  455. background-color: #555555;
  456. color: #ffffff;
  457. text-shadow: none;
  458. background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(0, 0, 0, 0.1)));
  459. background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.1));
  460. background-image: linear-gradient(rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.1));
  461. -webkit-box-shadow: none;
  462. box-shadow: none;
  463. }
  464. .ui.secondary.buttons .button:hover,
  465. .ui.secondary.button:hover {
  466. background-color: #626262;
  467. color: #ffffff;
  468. text-shadow: none;
  469. }
  470. .ui.secondary.buttons .button:active,
  471. .ui.secondary.button:active {
  472. background-color: #434343;
  473. color: #ffffff;
  474. text-shadow: none;
  475. }
  476. .ui.secondary.buttons .active.button,
  477. .ui.secondary.button.active {
  478. background-color: #484848;
  479. color: #ffffff;
  480. text-shadow: none;
  481. }
  482. /*-------------------
  483. Social
  484. --------------------*/
  485. /* Facebook */
  486. .ui.facebook.button {
  487. background-color: #3b579d;
  488. color: #ffffff;
  489. text-shadow: none;
  490. background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(0, 0, 0, 0.1)));
  491. background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.1));
  492. background-image: linear-gradient(rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.1));
  493. -webkit-box-shadow: none;
  494. box-shadow: none;
  495. }
  496. .ui.facebook.button:hover {
  497. background-color: #4261b0;
  498. color: #ffffff;
  499. text-shadow: none;
  500. }
  501. .ui.facebook.button:active {
  502. background-color: #314983;
  503. color: #ffffff;
  504. text-shadow: none;
  505. }
  506. /* Twitter */
  507. .ui.twitter.button {
  508. background-color: #4092cc;
  509. color: #ffffff;
  510. text-shadow: none;
  511. background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(0, 0, 0, 0.1)));
  512. background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.1));
  513. background-image: linear-gradient(rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.1));
  514. -webkit-box-shadow: none;
  515. box-shadow: none;
  516. }
  517. .ui.twitter.button:hover {
  518. background-color: #549dd1;
  519. color: #ffffff;
  520. text-shadow: none;
  521. }
  522. .ui.twitter.button:active {
  523. background-color: #3180b7;
  524. color: #ffffff;
  525. text-shadow: none;
  526. }
  527. /* Google Plus */
  528. .ui.google.plus.button {
  529. background-color: #d34836;
  530. color: #ffffff;
  531. text-shadow: none;
  532. background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(0, 0, 0, 0.1)));
  533. background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.1));
  534. background-image: linear-gradient(rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.1));
  535. -webkit-box-shadow: none;
  536. box-shadow: none;
  537. }
  538. .ui.google.plus.button:hover {
  539. background-color: #d85b4b;
  540. color: #ffffff;
  541. text-shadow: none;
  542. }
  543. .ui.google.plus.button:active {
  544. background-color: #bc3a29;
  545. color: #ffffff;
  546. text-shadow: none;
  547. }
  548. /* Linked In */
  549. .ui.linkedin.button {
  550. background-color: #1f88be;
  551. color: #ffffff;
  552. text-shadow: none;
  553. }
  554. .ui.linkedin.button:hover {
  555. background-color: #2398d4;
  556. color: #ffffff;
  557. text-shadow: none;
  558. }
  559. .ui.linkedin.button:active {
  560. background-color: #1a729f;
  561. color: #ffffff;
  562. text-shadow: none;
  563. }
  564. /* YouTube */
  565. .ui.youtube.button {
  566. background-color: #cc181e;
  567. color: #ffffff;
  568. text-shadow: none;
  569. background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(0, 0, 0, 0.1)));
  570. background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.1));
  571. background-image: linear-gradient(rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.1));
  572. -webkit-box-shadow: none;
  573. box-shadow: none;
  574. }
  575. .ui.youtube.button:hover {
  576. background-color: #e31b21;
  577. color: #ffffff;
  578. text-shadow: none;
  579. }
  580. .ui.youtube.button:active {
  581. background-color: #ac1419;
  582. color: #ffffff;
  583. text-shadow: none;
  584. }
  585. /* Instagram */
  586. .ui.instagram.button {
  587. background-color: #49769c;
  588. color: #ffffff;
  589. text-shadow: none;
  590. background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(0, 0, 0, 0.1)));
  591. background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.1));
  592. background-image: linear-gradient(rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.1));
  593. -webkit-box-shadow: none;
  594. box-shadow: none;
  595. }
  596. .ui.instagram.button:hover {
  597. background-color: #5183ad;
  598. color: #ffffff;
  599. text-shadow: none;
  600. }
  601. .ui.instagram.button:active {
  602. background-color: #3e6484;
  603. color: #ffffff;
  604. text-shadow: none;
  605. }
  606. /* Pinterest */
  607. .ui.pinterest.button {
  608. background-color: #00aced;
  609. color: #ffffff;
  610. text-shadow: none;
  611. background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(0, 0, 0, 0.1)));
  612. background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.1));
  613. background-image: linear-gradient(rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.1));
  614. -webkit-box-shadow: none;
  615. box-shadow: none;
  616. }
  617. .ui.pinterest.button:hover {
  618. background-color: #08bbff;
  619. color: #ffffff;
  620. text-shadow: none;
  621. }
  622. .ui.pinterest.button:active {
  623. background-color: #0092c9;
  624. color: #ffffff;
  625. text-shadow: none;
  626. }
  627. /* VK */
  628. .ui.vk.button {
  629. background-color: #4D7198;
  630. color: #ffffff;
  631. background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(0, 0, 0, 0.1)));
  632. background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.1));
  633. background-image: linear-gradient(rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.1));
  634. -webkit-box-shadow: none;
  635. box-shadow: none;
  636. }
  637. .ui.vk.button:hover {
  638. background-color: #567ea9;
  639. color: #ffffff;
  640. }
  641. .ui.vk.button:active {
  642. background-color: #415f80;
  643. color: #ffffff;
  644. }
  645. /*--------------
  646. Icon
  647. ---------------*/
  648. .ui.button > .icon {
  649. margin-right: 0.6em;
  650. line-height: 1;
  651. -webkit-transition: opacity 0.1s ease;
  652. transition: opacity 0.1s ease;
  653. }
  654. /*******************************
  655. Variations
  656. *******************************/
  657. /*-------------------
  658. Floated
  659. --------------------*/
  660. .ui.left.floated.buttons,
  661. .ui.left.floated.button {
  662. float: left;
  663. margin-left: 0em;
  664. margin-right: 0.25em;
  665. }
  666. .ui.right.floated.buttons,
  667. .ui.right.floated.button {
  668. float: right;
  669. margin-right: 0em;
  670. margin-left: 0.25em;
  671. }
  672. /*-------------------
  673. Compact
  674. --------------------*/
  675. .ui.compact.buttons .button,
  676. .ui.compact.button {
  677. padding: 0.6em 1.125em 0.6em;
  678. }
  679. .ui.compact.icon.buttons .button,
  680. .ui.compact.buttons .icon.button {
  681. padding: 0.6em 0.6em 0.6em;
  682. }
  683. /*-------------------
  684. Sizes
  685. --------------------*/
  686. .ui.mini.buttons .button,
  687. .ui.mini.buttons .or,
  688. .ui.mini.button {
  689. font-size: 0.7rem;
  690. }
  691. .ui.tiny.buttons .button,
  692. .ui.tiny.buttons .or,
  693. .ui.tiny.button {
  694. font-size: 0.8rem;
  695. }
  696. .ui.small.buttons .button,
  697. .ui.small.buttons .or,
  698. .ui.small.button {
  699. font-size: 0.875rem;
  700. }
  701. .ui.buttons .button,
  702. .ui.button {
  703. font-size: 1rem;
  704. }
  705. .ui.large.buttons .button,
  706. .ui.large.buttons .or,
  707. .ui.large.button {
  708. font-size: 1.125rem;
  709. }
  710. .ui.big.buttons .button,
  711. .ui.big.buttons .or,
  712. .ui.big.button {
  713. font-size: 1.25rem;
  714. }
  715. .ui.huge.buttons .button,
  716. .ui.huge.buttons .or,
  717. .ui.huge.button {
  718. font-size: 1.375rem;
  719. }
  720. .ui.massive.buttons .button,
  721. .ui.massive.buttons .or,
  722. .ui.massive.button {
  723. font-size: 1.5rem;
  724. }
  725. /* Or resize */
  726. .ui.tiny.buttons .or:before,
  727. .ui.mini.buttons .or:before {
  728. width: 1.45em;
  729. height: 1.55em;
  730. line-height: 1.4;
  731. margin-left: -0.725em;
  732. margin-top: -0.25em;
  733. }
  734. .ui.tiny.buttons .or:after,
  735. .ui.mini.buttons .or:after {
  736. height: 1.45em;
  737. }
  738. /* Loading Resize */
  739. .ui.huge.loading.button:after,
  740. .ui.huge.loading.button.active:after {
  741. background-image: url("../../themes/packages/default/assets/images/loader-small.gif");
  742. }
  743. .ui.massive.buttons .loading.button:after,
  744. .ui.gigantic.buttons .loading.button:after,
  745. .ui.massive.loading.button:after,
  746. .ui.gigantic.loading.button:after,
  747. .ui.massive.buttons .loading.button.active:after,
  748. .ui.gigantic.buttons .loading.button.active:after,
  749. .ui.massive.loading.button.active:after,
  750. .ui.gigantic.loading.button.active:after {
  751. background-image: url("../../themes/packages/default/assets/images/loader-medium.gif");
  752. }
  753. /*--------------
  754. Icon Only
  755. ---------------*/
  756. .ui.icon.buttons .button,
  757. .ui.icon.button {
  758. padding: 0.8em 0.8em 0.8em;
  759. }
  760. .ui.icon.buttons .button > .icon,
  761. .ui.icon.button > .icon {
  762. opacity: 0.9;
  763. margin: 0em;
  764. }
  765. .ui.icon.buttons .button > .icon {
  766. vertical-align: top;
  767. }
  768. /*-------------------
  769. Basic
  770. --------------------*/
  771. .ui.basic.buttons .button,
  772. .ui.basic.button {
  773. background-color: transparent !important;
  774. background-image: none;
  775. color: rgba(0, 0, 0, 0.6) !important;
  776. font-weight: normal;
  777. text-transform: none;
  778. text-shadow: none !important;
  779. -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
  780. box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
  781. }
  782. .ui.basic.labeled.icon.button > .icon {
  783. padding-top: 0.85em !important;
  784. }
  785. .ui.basic.buttons {
  786. -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
  787. box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
  788. border-radius: 0.25em;
  789. }
  790. .ui.basic.buttons .button:hover,
  791. .ui.basic.button:hover {
  792. background: none transparent;
  793. color: rgba(0, 0, 0, 0.8) !important;
  794. -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.15);
  795. box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.15);
  796. }
  797. .ui.basic.buttons .button:active,
  798. .ui.basic.button:active {
  799. background: rgba(0, 0, 0, 0.02) !important;
  800. color: rgba(0, 0, 0, 0.8) !important;
  801. -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.2);
  802. box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.2);
  803. }
  804. .ui.basic.buttons .button.active,
  805. .ui.basic.button.active {
  806. background: rgba(0, 0, 0, 0.05) !important;
  807. color: rgba(0, 0, 0, 0.8);
  808. -webkit-box-shadow: rgba(0, 0, 0, 0.2);
  809. box-shadow: rgba(0, 0, 0, 0.2);
  810. }
  811. .ui.basic.buttons .button.active:hover,
  812. .ui.basic.button.active:hover {
  813. background-color: rgba(0, 0, 0, 0.05);
  814. }
  815. /* Inverted */
  816. .ui.basic.inverted.buttons .button,
  817. .ui.basic.inverted.button {
  818. color: #fafafa !important;
  819. -webkit-box-shadow: rgba(255, 255, 255, 0.3);
  820. box-shadow: rgba(255, 255, 255, 0.3);
  821. }
  822. .ui.basic.inverted.buttons .button:hover,
  823. .ui.basic.inverted.button:hover {
  824. color: #ffffff !important;
  825. -webkit-box-shadow: rgba(255, 255, 255, 0.3);
  826. box-shadow: rgba(255, 255, 255, 0.3);
  827. }
  828. .ui.basic.inverted.buttons .button:active,
  829. .ui.basic.inverted.button:active {
  830. background-color: rgba(255, 255, 255, 0.05) !important;
  831. color: #ffffff !important;
  832. -webkit-box-shadow: rgba(255, 255, 255, 0.8) !important;
  833. box-shadow: rgba(255, 255, 255, 0.8) !important;
  834. }
  835. .ui.basic.inverted.buttons .button.active,
  836. .ui.basic.inverted.button.active {
  837. background-color: rgba(255, 255, 255, 0.05);
  838. color: #ffffff;
  839. text-shadow: none;
  840. -webkit-box-shadow: none;
  841. box-shadow: none;
  842. }
  843. .ui.basic.inverted.buttons .button.active:hover,
  844. .ui.basic.inverted.button.active:hover {
  845. background-color: rgba(255, 255, 255, 0.01);
  846. }
  847. /* Loading */
  848. .ui.basic.loading.button:after {
  849. background-color: #ffffff;
  850. border-radius: 0.25em;
  851. }
  852. /* Basic Group */
  853. .ui.basic.buttons .button {
  854. border-left: 1px solid rgba(0, 0, 0, 0.1);
  855. -webkit-box-shadow: none;
  856. box-shadow: none;
  857. }
  858. /*--------------
  859. Labeled Icon
  860. ---------------*/
  861. .ui.labeled.icon.buttons .button,
  862. .ui.labeled.icon.button {
  863. position: relative;
  864. padding-left: 4.33em !important;
  865. padding-right: 1.5em !important;
  866. }
  867. .ui.labeled.icon.buttons > .button > .icon,
  868. .ui.labeled.icon.button > .icon {
  869. position: absolute;
  870. top: 0em;
  871. left: 0em;
  872. -webkit-box-sizing: border-box;
  873. -moz-box-sizing: border-box;
  874. box-sizing: border-box;
  875. width: 2.83em;
  876. height: 100%;
  877. padding-top: 0.85em;
  878. background-color: rgba(0, 0, 0, 0.05);
  879. text-align: center;
  880. border-radius: 0.25em 0px 0px 0.25em;
  881. line-height: 1;
  882. -webkit-box-shadow: -1px 0px 0px 0px rgba(0, 0, 0, 0.05) inset;
  883. box-shadow: -1px 0px 0px 0px rgba(0, 0, 0, 0.05) inset;
  884. }
  885. .ui.labeled.icon.buttons .button > .icon {
  886. border-radius: 0em;
  887. }
  888. .ui.labeled.icon.buttons .button:first-child > .icon {
  889. border-top-left-radius: 0.25em;
  890. border-bottom-left-radius: 0.25em;
  891. }
  892. .ui.labeled.icon.buttons .button:last-child > .icon {
  893. border-top-right-radius: 0.25em;
  894. border-bottom-right-radius: 0.25em;
  895. }
  896. .ui.vertical.labeled.icon.buttons .button:first-child > .icon {
  897. border-radius: 0em;
  898. border-top-left-radius: 0.25em;
  899. }
  900. .ui.vertical.labeled.icon.buttons .button:last-child > .icon {
  901. border-radius: 0em;
  902. border-bottom-left-radius: 0.25em;
  903. }
  904. .ui.right.labeled.icon.button {
  905. padding-right: 4.33em !important;
  906. padding-left: 1.5em !important;
  907. }
  908. .ui.left.fluid.labeled.icon.button,
  909. .ui.right.fluid.labeled.icon.button {
  910. padding-left: 1.5em !important;
  911. padding-right: 1.5em !important;
  912. }
  913. .ui.right.labeled.icon.button .icon {
  914. left: auto;
  915. right: 0em;
  916. border-radius: 0em 0.25em 0.25em 0em;
  917. -webkit-box-shadow: 1px 0px 0px 0px rgba(0, 0, 0, 0.05) inset;
  918. box-shadow: 1px 0px 0px 0px rgba(0, 0, 0, 0.05) inset;
  919. }
  920. /*--------------
  921. Toggle
  922. ---------------*/
  923. /* Toggle (Modifies active state to give affordances) */
  924. .ui.toggle.buttons .active.button,
  925. .ui.buttons .button.toggle.active,
  926. .ui.button.toggle.active {
  927. background-color: #2ecc40 !important;
  928. -webkit-box-shadow: none !important;
  929. box-shadow: none !important;
  930. text-shadow: none;
  931. color: #ffffff !important;
  932. }
  933. .ui.button.toggle.active:hover {
  934. background-color: #40d451 !important;
  935. text-shadow: none;
  936. color: #ffffff !important;
  937. }
  938. /*--------------
  939. Circular
  940. ---------------*/
  941. .ui.circular.button {
  942. border-radius: 10em;
  943. }
  944. /*--------------
  945. Attached
  946. ---------------*/
  947. .ui.attached.button {
  948. display: block;
  949. margin: 0em;
  950. -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1) !important;
  951. box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1) !important;
  952. }
  953. .ui.attached.top.button {
  954. border-radius: 0.25em 0.25em 0em 0em;
  955. }
  956. .ui.attached.bottom.button {
  957. border-radius: 0em 0em 0.25em 0.25em;
  958. }
  959. .ui.attached.left.button {
  960. display: inline-block;
  961. border-left: none;
  962. padding-right: 0.75em;
  963. text-align: right;
  964. border-radius: 0.25em 0em 0em 0.25em;
  965. }
  966. .ui.attached.right.button {
  967. display: inline-block;
  968. padding-left: 0.75em;
  969. text-align: left;
  970. border-radius: 0em 0.25em 0.25em 0em;
  971. }
  972. /*-------------------
  973. Or Buttons
  974. --------------------*/
  975. .ui.buttons .or {
  976. position: relative;
  977. float: left;
  978. width: 0.3em;
  979. height: 1.1em;
  980. z-index: 3;
  981. }
  982. .ui.buttons .or:before {
  983. position: absolute;
  984. top: 50%;
  985. left: 50%;
  986. content: 'or';
  987. background-color: #ffffff;
  988. text-shadow: none;
  989. margin-top: -0.1em;
  990. margin-left: -0.9em;
  991. width: 1.8em;
  992. height: 1.8em;
  993. line-height: 1.6;
  994. color: rgba(0, 0, 0, 0.4);
  995. font-style: normal;
  996. font-weight: bold;
  997. text-align: center;
  998. border-radius: 500em;
  999. -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
  1000. box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
  1001. -webkit-box-sizing: border-box;
  1002. -moz-box-sizing: border-box;
  1003. box-sizing: border-box;
  1004. }
  1005. .ui.buttons .or:after {
  1006. position: absolute;
  1007. top: 0em;
  1008. left: 0em;
  1009. content: ' ';
  1010. background-color: transparent;
  1011. width: 0.3em;
  1012. height: 2.1em;
  1013. border-top: 0.5em solid #ffffff;
  1014. border-bottom: 0.5em solid #ffffff;
  1015. }
  1016. /* Fluid Or */
  1017. .ui.fluid.buttons .or {
  1018. width: 0em !important;
  1019. }
  1020. .ui.fluid.buttons .or:after {
  1021. display: none;
  1022. }
  1023. /*-------------------
  1024. Attached
  1025. --------------------*/
  1026. /* Plural Attached */
  1027. .attached.ui.buttons {
  1028. margin: 0px;
  1029. border-radius: 0.25em 0.25em 0em 0em;
  1030. }
  1031. .attached.ui.buttons .button:first-child {
  1032. border-radius: 0.25em 0em 0em 0em;
  1033. }
  1034. .attached.ui.buttons .button:last-child {
  1035. border-radius: 0em 0.25em 0em 0em;
  1036. }
  1037. /* Bottom Side */
  1038. .bottom.attached.ui.buttons {
  1039. margin-top: -1px;
  1040. border-radius: 0em 0em 0.25em 0.25em;
  1041. }
  1042. .bottom.attached.ui.buttons .button:first-child {
  1043. border-radius: 0em 0em 0em 0.25em;
  1044. }
  1045. .bottom.attached.ui.buttons .button:last-child {
  1046. border-radius: 0em 0em 0.25em 0em;
  1047. }
  1048. /* Left Side */
  1049. .left.attached.ui.buttons {
  1050. margin-left: -1px;
  1051. border-radius: 0em 0.25em 0.25em 0em;
  1052. }
  1053. .left.attached.ui.buttons .button:first-child {
  1054. margin-left: -1px;
  1055. border-radius: 0em 0.25em 0em 0em;
  1056. }
  1057. .left.attached.ui.buttons .button:last-child {
  1058. margin-left: -1px;
  1059. border-radius: 0em 0em 0.25em 0em;
  1060. }
  1061. /* Right Side */
  1062. .right.attached.ui.buttons,
  1063. .right.attached.ui.buttons .button {
  1064. margin-right: -1px;
  1065. border-radius: 0.25em 0em 0em 0.25em;
  1066. }
  1067. .right.attached.ui.buttons .button:first-child {
  1068. margin-left: -1px;
  1069. border-radius: 0.25em 0em 0em 0em;
  1070. }
  1071. .right.attached.ui.buttons .button:last-child {
  1072. margin-left: -1px;
  1073. border-radius: 0em 0em 0em 0.25em;
  1074. }
  1075. /* Fluid */
  1076. .ui.fluid.buttons,
  1077. .ui.button.fluid,
  1078. .ui.fluid.buttons > .button {
  1079. display: block;
  1080. width: 100%;
  1081. }
  1082. .ui.\32.buttons > .button,
  1083. .ui.two.buttons > .button {
  1084. width: 50%;
  1085. }
  1086. .ui.\33.buttons > .button,
  1087. .ui.three.buttons > .button {
  1088. width: 33.333%;
  1089. }
  1090. .ui.\34.buttons > .button,
  1091. .ui.four.buttons > .button {
  1092. width: 25%;
  1093. }
  1094. .ui.\35.buttons > .button,
  1095. .ui.five.buttons > .button {
  1096. width: 20%;
  1097. }
  1098. .ui.\36.buttons > .button,
  1099. .ui.six.buttons > .button {
  1100. width: 16.666%;
  1101. }
  1102. .ui.\37.buttons > .button,
  1103. .ui.seven.buttons > .button {
  1104. width: 14.285%;
  1105. }
  1106. .ui.\38.buttons > .button,
  1107. .ui.eight.buttons > .button {
  1108. width: 12.500%;
  1109. }
  1110. .ui.\39.buttons > .button,
  1111. .ui.nine.buttons > .button {
  1112. width: 11.11%;
  1113. }
  1114. .ui.\31\30.buttons > .button,
  1115. .ui.ten.buttons > .button {
  1116. width: 10%;
  1117. }
  1118. .ui.\31\31.buttons > .button,
  1119. .ui.eleven.buttons > .button {
  1120. width: 9.09%;
  1121. }
  1122. .ui.\31\32.buttons > .button,
  1123. .ui.twelve.buttons > .button {
  1124. width: 8.3333%;
  1125. }
  1126. /* Fluid Vertical Buttons */
  1127. .ui.fluid.vertical.buttons,
  1128. .ui.fluid.vertical.buttons > .button {
  1129. display: block;
  1130. width: auto;
  1131. -webkit-box-sizing: border-box;
  1132. -moz-box-sizing: border-box;
  1133. box-sizing: border-box;
  1134. }
  1135. .ui.\32.vertical.buttons > .button,
  1136. .ui.two.vertical.buttons > .button {
  1137. height: 50%;
  1138. }
  1139. .ui.\33.vertical.buttons > .button,
  1140. .ui.three.vertical.buttons > .button {
  1141. height: 33.333%;
  1142. }
  1143. .ui.\34.vertical.buttons > .button,
  1144. .ui.four.vertical.buttons > .button {
  1145. height: 25%;
  1146. }
  1147. .ui.\35.vertical.buttons > .button,
  1148. .ui.five.vertical.buttons > .button {
  1149. height: 20%;
  1150. }
  1151. .ui.\36.vertical.buttons > .button,
  1152. .ui.six.vertical.buttons > .button {
  1153. height: 16.666%;
  1154. }
  1155. .ui.\37.vertical.buttons > .button,
  1156. .ui.seven.vertical.buttons > .button {
  1157. height: 14.285%;
  1158. }
  1159. .ui.\38.vertical.buttons > .button,
  1160. .ui.eight.vertical.buttons > .button {
  1161. height: 12.500%;
  1162. }
  1163. .ui.\39.vertical.buttons > .button,
  1164. .ui.nine.vertical.buttons > .button {
  1165. height: 11.11%;
  1166. }
  1167. .ui.\31\30.vertical.buttons > .button,
  1168. .ui.ten.vertical.buttons > .button {
  1169. height: 10%;
  1170. }
  1171. .ui.\31\31.vertical.buttons > .button,
  1172. .ui.eleven.vertical.buttons > .button {
  1173. height: 9.09%;
  1174. }
  1175. .ui.\31\32.vertical.buttons > .button,
  1176. .ui.twelve.vertical.buttons > .button {
  1177. height: 8.3333%;
  1178. }
  1179. /*-------------------
  1180. Colors
  1181. --------------------*/
  1182. /*--- Black ---*/
  1183. .ui.black.buttons .button,
  1184. .ui.black.button {
  1185. background-color: #555555;
  1186. color: #ffffff;
  1187. text-shadow: none;
  1188. background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(0, 0, 0, 0.1)));
  1189. background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.1));
  1190. background-image: linear-gradient(rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.1));
  1191. -webkit-box-shadow: none;
  1192. box-shadow: none;
  1193. }
  1194. .ui.black.buttons .button:hover,
  1195. .ui.black.button:hover {
  1196. background-color: #626262;
  1197. color: #ffffff;
  1198. text-shadow: none;
  1199. }
  1200. .ui.black.buttons .button:active,
  1201. .ui.black.button:active {
  1202. background-color: #434343;
  1203. color: #ffffff;
  1204. text-shadow: none;
  1205. }
  1206. .ui.black.buttons .button.active,
  1207. .ui.black.buttons .button.active:active,
  1208. .ui.black.button.active,
  1209. .ui.black.button .button.active:active {
  1210. background-color: #484848;
  1211. color: #ffffff;
  1212. text-shadow: none;
  1213. }
  1214. .ui.inverted.black.buttons .button,
  1215. .ui.inverted.black.button {
  1216. background-color: transparent;
  1217. -webkit-box-shadow: 0px 0px 0px 2px #999999 inset !important;
  1218. box-shadow: 0px 0px 0px 2px #999999 inset !important;
  1219. color: #999999;
  1220. }
  1221. .ui.inverted.black.buttons .button:hover,
  1222. .ui.inverted.black.button:hover {
  1223. -webkit-box-shadow: 0px 0px 0px 2px #555555 inset !important;
  1224. box-shadow: 0px 0px 0px 2px #555555 inset !important;
  1225. background-color: #555555;
  1226. color: #ffffff;
  1227. }
  1228. /*--- Blue ---*/
  1229. .ui.blue.buttons .button,
  1230. .ui.blue.button {
  1231. background-color: #0074d9;
  1232. color: #ffffff;
  1233. text-shadow: none;
  1234. background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(0, 0, 0, 0.1)));
  1235. background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.1));
  1236. background-image: linear-gradient(rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.1));
  1237. -webkit-box-shadow: none;
  1238. box-shadow: none;
  1239. }
  1240. .ui.blue.buttons .button:hover,
  1241. .ui.blue.button:hover {
  1242. background-color: #0082f3;
  1243. color: #ffffff;
  1244. text-shadow: none;
  1245. }
  1246. .ui.blue.buttons .button:active,
  1247. .ui.blue.button:active {
  1248. background-color: #0061b5;
  1249. color: #ffffff;
  1250. text-shadow: none;
  1251. }
  1252. .ui.blue.buttons .button.active,
  1253. .ui.blue.buttons .button.active:active,
  1254. .ui.blue.button.active,
  1255. .ui.blue.button .button.active:active {
  1256. background-color: #0066c0;
  1257. color: #ffffff;
  1258. text-shadow: none;
  1259. }
  1260. /* Inverted */
  1261. .ui.inverted.blue.buttons .button,
  1262. .ui.inverted.blue.button {
  1263. background-color: transparent;
  1264. -webkit-box-shadow: 0px 0px 0px 2px #54c8ff inset !important;
  1265. box-shadow: 0px 0px 0px 2px #54c8ff inset !important;
  1266. color: #54c8ff;
  1267. }
  1268. .ui.inverted.blue.buttons .button:hover,
  1269. .ui.inverted.blue.button:hover {
  1270. -webkit-box-shadow: 0px 0px 0px 2px #0074d9 inset !important;
  1271. box-shadow: 0px 0px 0px 2px #0074d9 inset !important;
  1272. background-color: #0074d9;
  1273. color: #ffffff;
  1274. }
  1275. /*--- Green ---*/
  1276. .ui.green.buttons .button,
  1277. .ui.green.button {
  1278. background-color: #2ecc40;
  1279. color: #ffffff;
  1280. text-shadow: none;
  1281. background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(0, 0, 0, 0.1)));
  1282. background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.1));
  1283. background-image: linear-gradient(rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.1));
  1284. -webkit-box-shadow: none;
  1285. box-shadow: none;
  1286. }
  1287. .ui.green.buttons .button:hover,
  1288. .ui.green.button:hover {
  1289. background-color: #40d451;
  1290. color: #ffffff;
  1291. text-shadow: none;
  1292. }
  1293. .ui.green.buttons .button:active,
  1294. .ui.green.button:active {
  1295. background-color: #27af37;
  1296. color: #ffffff;
  1297. text-shadow: none;
  1298. }
  1299. .ui.green.buttons .button.active,
  1300. .ui.green.buttons .button.active:active,
  1301. .ui.green.button.active,
  1302. .ui.green.button .button.active:active {
  1303. background-color: #29b739;
  1304. color: #ffffff;
  1305. text-shadow: none;
  1306. }
  1307. /* Inverted */
  1308. .ui.inverted.green.buttons .button,
  1309. .ui.inverted.green.button {
  1310. background-color: transparent;
  1311. -webkit-box-shadow: 0px 0px 0px 2px #2ecc40 inset !important;
  1312. box-shadow: 0px 0px 0px 2px #2ecc40 inset !important;
  1313. color: #2ecc40;
  1314. }
  1315. .ui.inverted.green.buttons .button:hover,
  1316. .ui.inverted.green.button:hover {
  1317. -webkit-box-shadow: 0px 0px 0px 2px #2ecc40 inset !important;
  1318. box-shadow: 0px 0px 0px 2px #2ecc40 inset !important;
  1319. background-color: #2ecc40;
  1320. color: #ffffff;
  1321. }
  1322. /*--- Orange ---*/
  1323. .ui.orange.buttons .button,
  1324. .ui.orange.button {
  1325. background-color: #ff851b;
  1326. color: #ffffff;
  1327. text-shadow: none;
  1328. background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(0, 0, 0, 0.1)));
  1329. background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.1));
  1330. background-image: linear-gradient(rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.1));
  1331. -webkit-box-shadow: none;
  1332. box-shadow: none;
  1333. }
  1334. .ui.orange.buttons .button:hover,
  1335. .ui.orange.button:hover {
  1336. background-color: #ff9335;
  1337. color: #ffffff;
  1338. text-shadow: none;
  1339. }
  1340. .ui.orange.buttons .button:active,
  1341. .ui.orange.button:active {
  1342. background-color: #f67300;
  1343. color: #ffffff;
  1344. text-shadow: none;
  1345. }
  1346. .ui.orange.buttons .button.active,
  1347. .ui.orange.buttons .button.active:active,
  1348. .ui.orange.button.active,
  1349. .ui.orange.button .button.active:active {
  1350. background-color: #484848;
  1351. color: #ffffff;
  1352. text-shadow: none;
  1353. }
  1354. /* Inverted */
  1355. .ui.inverted.orange.buttons .button,
  1356. .ui.inverted.orange.button {
  1357. background-color: transparent;
  1358. -webkit-box-shadow: 0px 0px 0px 2px #ff851b inset !important;
  1359. box-shadow: 0px 0px 0px 2px #ff851b inset !important;
  1360. color: #ff851b;
  1361. }
  1362. .ui.inverted.orange.buttons .button:hover,
  1363. .ui.inverted.orange.button:hover {
  1364. -webkit-box-shadow: 0px 0px 0px 2px #ff851b inset !important;
  1365. box-shadow: 0px 0px 0px 2px #ff851b inset !important;
  1366. background-color: #ff851b;
  1367. color: #ffffff;
  1368. }
  1369. /*--- Pink ---*/
  1370. .ui.pink.buttons .button,
  1371. .ui.pink.button {
  1372. background-color: #d9499a;
  1373. color: #ffffff;
  1374. text-shadow: none;
  1375. background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(0, 0, 0, 0.1)));
  1376. background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.1));
  1377. background-image: linear-gradient(rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.1));
  1378. -webkit-box-shadow: none;
  1379. box-shadow: none;
  1380. }
  1381. .ui.pink.buttons .button:hover,
  1382. .ui.pink.button:hover {
  1383. background-color: #dd5ea6;
  1384. color: #ffffff;
  1385. text-shadow: none;
  1386. }
  1387. .ui.pink.buttons .button:active,
  1388. .ui.pink.button:active {
  1389. background-color: #d22c8a;
  1390. color: #ffffff;
  1391. text-shadow: none;
  1392. }
  1393. .ui.pink.buttons .button.active,
  1394. .ui.pink.buttons .button.active:active,
  1395. .ui.pink.button.active,
  1396. .ui.pink.button .button.active:active {
  1397. background-color: #d5348e;
  1398. color: #ffffff;
  1399. text-shadow: none;
  1400. }
  1401. /* Inverted */
  1402. .ui.inverted.pink.buttons .button,
  1403. .ui.inverted.pink.button {
  1404. background-color: transparent;
  1405. -webkit-box-shadow: 0px 0px 0px 2px #ff8edf inset !important;
  1406. box-shadow: 0px 0px 0px 2px #ff8edf inset !important;
  1407. color: #ff8edf;
  1408. }
  1409. .ui.inverted.pink.buttons .button:hover,
  1410. .ui.inverted.pink.button:hover {
  1411. -webkit-box-shadow: 0px 0px 0px 2px #ff8edf inset !important;
  1412. box-shadow: 0px 0px 0px 2px #ff8edf inset !important;
  1413. background-color: #ff8edf;
  1414. color: #ffffff;
  1415. }
  1416. /*--- Purple ---*/
  1417. .ui.purple.buttons .button,
  1418. .ui.purple.button {
  1419. background-color: #564f8a;
  1420. color: #ffffff;
  1421. text-shadow: none;
  1422. background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(0, 0, 0, 0.1)));
  1423. background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.1));
  1424. background-image: linear-gradient(rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.1));
  1425. -webkit-box-shadow: none;
  1426. box-shadow: none;
  1427. }
  1428. .ui.purple.buttons .button:hover,
  1429. .ui.purple.button:hover {
  1430. background-color: #60589a;
  1431. color: #ffffff;
  1432. text-shadow: none;
  1433. }
  1434. .ui.purple.buttons .button:active,
  1435. .ui.purple.button:active {
  1436. background-color: #484273;
  1437. color: #ffffff;
  1438. text-shadow: none;
  1439. }
  1440. .ui.purple.buttons .button.active,
  1441. .ui.purple.buttons .button.active:active,
  1442. .ui.purple.button.active,
  1443. .ui.purple.button .button.active:active {
  1444. background-color: #4c467a;
  1445. color: #ffffff;
  1446. text-shadow: none;
  1447. }
  1448. /* Inverted */
  1449. .ui.inverted.purple.buttons .button,
  1450. .ui.inverted.purple.button {
  1451. background-color: transparent;
  1452. -webkit-box-shadow: 0px 0px 0px 2px #cdc6ff inset !important;
  1453. box-shadow: 0px 0px 0px 2px #cdc6ff inset !important;
  1454. color: #cdc6ff;
  1455. }
  1456. .ui.inverted.purple.buttons .button:hover,
  1457. .ui.inverted.purple.button:hover {
  1458. -webkit-box-shadow: 0px 0px 0px 2px #cdc6ff inset !important;
  1459. box-shadow: 0px 0px 0px 2px #cdc6ff inset !important;
  1460. background-color: #cdc6ff;
  1461. color: #ffffff;
  1462. }
  1463. /*--- Red ---*/
  1464. .ui.red.buttons .button,
  1465. .ui.red.button {
  1466. background-color: #ff4136;
  1467. color: #ffffff;
  1468. text-shadow: none;
  1469. background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(0, 0, 0, 0.1)));
  1470. background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.1));
  1471. background-image: linear-gradient(rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.1));
  1472. -webkit-box-shadow: none;
  1473. box-shadow: none;
  1474. }
  1475. .ui.red.buttons .button:hover,
  1476. .ui.red.button:hover {
  1477. background-color: #ff5950;
  1478. color: #ffffff;
  1479. text-shadow: none;
  1480. }
  1481. .ui.red.buttons .button:active,
  1482. .ui.red.button:active {
  1483. background-color: #ff1f12;
  1484. color: #ffffff;
  1485. text-shadow: none;
  1486. }
  1487. .ui.red.buttons .button.active,
  1488. .ui.red.buttons .button.active:active,
  1489. .ui.red.button.active,
  1490. .ui.red.button .button.active:active {
  1491. background-color: #ff291c;
  1492. color: #ffffff;
  1493. text-shadow: none;
  1494. }
  1495. /* Inverted */
  1496. .ui.inverted.red.buttons .button,
  1497. .ui.inverted.red.button {
  1498. background-color: transparent;
  1499. -webkit-box-shadow: 0px 0px 0px 2px #ff695e inset !important;
  1500. box-shadow: 0px 0px 0px 2px #ff695e inset !important;
  1501. color: #ff695e;
  1502. }
  1503. .ui.inverted.red.buttons .button:hover,
  1504. .ui.inverted.red.button:hover {
  1505. -webkit-box-shadow: 0px 0px 0px 2px #ff695e inset !important;
  1506. box-shadow: 0px 0px 0px 2px #ff695e inset !important;
  1507. background-color: #ff695e;
  1508. color: #ffffff;
  1509. }
  1510. /*--- Teal ---*/
  1511. .ui.teal.buttons .button,
  1512. .ui.teal.button {
  1513. background-color: #39cccc;
  1514. color: #ffffff;
  1515. text-shadow: none;
  1516. background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(0, 0, 0, 0.1)));
  1517. background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.1));
  1518. background-image: linear-gradient(rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.1));
  1519. -webkit-box-shadow: none;
  1520. box-shadow: none;
  1521. }
  1522. .ui.teal.buttons .button:hover,
  1523. .ui.teal.button:hover {
  1524. background-color: #4dd1d1;
  1525. color: #ffffff;
  1526. text-shadow: none;
  1527. }
  1528. .ui.teal.buttons .button:active,
  1529. .ui.teal.button:active {
  1530. background-color: #2eb3b3;
  1531. color: #ffffff;
  1532. text-shadow: none;
  1533. }
  1534. .ui.teal.buttons .button.active,
  1535. .ui.teal.buttons .button.active:active,
  1536. .ui.teal.button.active,
  1537. .ui.teal.button .button.active:active {
  1538. background-color: #30bbbb;
  1539. color: #ffffff;
  1540. text-shadow: none;
  1541. }
  1542. /* Inverted */
  1543. .ui.inverted.teal.buttons .button,
  1544. .ui.inverted.teal.button {
  1545. background-color: transparent;
  1546. -webkit-box-shadow: 0px 0px 0px 2px #6dffff inset !important;
  1547. box-shadow: 0px 0px 0px 2px #6dffff inset !important;
  1548. color: #6dffff;
  1549. }
  1550. .ui.inverted.teal.buttons .button:hover,
  1551. .ui.inverted.teal.button:hover {
  1552. -webkit-box-shadow: 0px 0px 0px 2px #6dffff inset !important;
  1553. box-shadow: 0px 0px 0px 2px #6dffff inset !important;
  1554. background-color: #6dffff;
  1555. color: #ffffff;
  1556. }
  1557. /*--- Yellow ---*/
  1558. .ui.yellow.buttons .button,
  1559. .ui.yellow.button {
  1560. background-color: #ffcb08;
  1561. color: #ffffff;
  1562. text-shadow: none;
  1563. background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(0, 0, 0, 0.1)));
  1564. background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.1));
  1565. background-image: linear-gradient(rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.1));
  1566. -webkit-box-shadow: none;
  1567. box-shadow: none;
  1568. }
  1569. .ui.yellow.buttons .button:hover,
  1570. .ui.yellow.button:hover {
  1571. background-color: #ffd021;
  1572. color: #ffffff;
  1573. text-shadow: none;
  1574. }
  1575. .ui.yellow.buttons .button:active,
  1576. .ui.yellow.button:active {
  1577. background-color: #e3b300;
  1578. color: #ffffff;
  1579. text-shadow: none;
  1580. }
  1581. .ui.yellow.buttons .button.active,
  1582. .ui.yellow.buttons .button.active:active,
  1583. .ui.yellow.button.active,
  1584. .ui.yellow.button .button.active:active {
  1585. background-color: #edbb00;
  1586. color: #ffffff;
  1587. text-shadow: none;
  1588. }
  1589. /* Inverted */
  1590. .ui.inverted.yellow.buttons .button,
  1591. .ui.inverted.yellow.button {
  1592. background-color: transparent;
  1593. -webkit-box-shadow: 0px 0px 0px 2px #ffe21f inset !important;
  1594. box-shadow: 0px 0px 0px 2px #ffe21f inset !important;
  1595. color: #ffe21f;
  1596. }
  1597. .ui.inverted.yellow.buttons .button:hover,
  1598. .ui.inverted.yellow.button:hover {
  1599. -webkit-box-shadow: 0px 0px 0px 2px #ffe21f inset !important;
  1600. box-shadow: 0px 0px 0px 2px #ffe21f inset !important;
  1601. background-color: #ffe21f;
  1602. color: #ffffff;
  1603. }
  1604. /*---------------
  1605. Positive
  1606. ----------------*/
  1607. .ui.positive.buttons .button,
  1608. .ui.positive.button {
  1609. background-color: #2ecc40 !important;
  1610. color: #ffffff;
  1611. text-shadow: none;
  1612. background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(0, 0, 0, 0.1)));
  1613. background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.1));
  1614. background-image: linear-gradient(rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.1));
  1615. -webkit-box-shadow: none;
  1616. box-shadow: none;
  1617. }
  1618. .ui.positive.buttons .button:hover,
  1619. .ui.positive.button:hover,
  1620. .ui.positive.buttons .active.button,
  1621. .ui.positive.button.active {
  1622. background-color: #40d451 !important;
  1623. color: #ffffff;
  1624. text-shadow: none;
  1625. }
  1626. .ui.positive.buttons .button:active,
  1627. .ui.positive.button:active {
  1628. background-color: #27af37 !important;
  1629. color: #ffffff;
  1630. text-shadow: none;
  1631. }
  1632. .ui.positive.buttons .button.active,
  1633. .ui.positive.buttons .button.active:active,
  1634. .ui.positive.button.active,
  1635. .ui.positive.button .button.active:active {
  1636. background-color: #29b739;
  1637. color: #ffffff;
  1638. text-shadow: none;
  1639. }
  1640. /*---------------
  1641. Negative
  1642. ----------------*/
  1643. .ui.negative.buttons .button,
  1644. .ui.negative.button {
  1645. background-color: #ff4136 !important;
  1646. color: #ffffff;
  1647. text-shadow: none;
  1648. background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(0, 0, 0, 0.1)));
  1649. background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.1));
  1650. background-image: linear-gradient(rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.1));
  1651. -webkit-box-shadow: none;
  1652. box-shadow: none;
  1653. }
  1654. .ui.negative.buttons .button:hover,
  1655. .ui.negative.button:hover,
  1656. .ui.negative.buttons .active.button,
  1657. .ui.negative.button.active {
  1658. background-color: #ff5950 !important;
  1659. color: #ffffff;
  1660. text-shadow: none;
  1661. }
  1662. .ui.negative.buttons .button:active,
  1663. .ui.negative.button:active {
  1664. background-color: #ff1f12 !important;
  1665. color: #ffffff;
  1666. text-shadow: none;
  1667. }
  1668. .ui.negative.buttons .button.active,
  1669. .ui.negative.buttons .button.active:active,
  1670. .ui.negative.button.active,
  1671. .ui.negative.button .button.active:active {
  1672. background-color: #ff291c;
  1673. color: #ffffff;
  1674. text-shadow: none;
  1675. }
  1676. /*******************************
  1677. Groups
  1678. *******************************/
  1679. .ui.buttons {
  1680. display: inline-block;
  1681. vertical-align: middle;
  1682. margin: 0em 0.25em 0em 0em;
  1683. }
  1684. .ui.buttons:after {
  1685. content: ".";
  1686. display: block;
  1687. height: 0;
  1688. clear: both;
  1689. visibility: hidden;
  1690. }
  1691. .ui.buttons .button:first-child {
  1692. border-left: none;
  1693. }
  1694. .ui.buttons .button {
  1695. margin: 0em;
  1696. float: left;
  1697. border-radius: 0em;
  1698. margin: 0px 0px 0px -1px;
  1699. }
  1700. .ui.buttons .button:first-child {
  1701. margin-left: 0em;
  1702. border-top-left-radius: 0.25em;
  1703. border-bottom-left-radius: 0.25em;
  1704. }
  1705. .ui.buttons .button:last-child {
  1706. border-top-right-radius: 0.25em;
  1707. border-bottom-right-radius: 0.25em;
  1708. }
  1709. /* Vertical Style */
  1710. .ui.vertical.buttons {
  1711. display: inline-block;
  1712. }
  1713. .ui.vertical.buttons .button {
  1714. display: block;
  1715. float: none;
  1716. margin: 0px 0px -1px 0px;
  1717. -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1) inset;
  1718. box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1) inset;
  1719. }
  1720. .ui.vertical.buttons .button:first-child,
  1721. .ui.vertical.buttons .mini.button:first-child,
  1722. .ui.vertical.buttons .tiny.button:first-child,
  1723. .ui.vertical.buttons .small.button:first-child,
  1724. .ui.vertical.buttons .massive.button:first-child,
  1725. .ui.vertical.buttons .huge.button:first-child {
  1726. border-radius: 0.25em 0.25em 0px 0px;
  1727. }
  1728. .ui.vertical.buttons .button:last-child,
  1729. .ui.vertical.buttons .mini.button:last-child,
  1730. .ui.vertical.buttons .tiny.button:last-child,
  1731. .ui.vertical.buttons .small.button:last-child,
  1732. .ui.vertical.buttons .massive.button:last-child,
  1733. .ui.vertical.buttons .huge.button:last-child,
  1734. .ui.vertical.buttons .gigantic.button:last-child {
  1735. margin-bottom: 0px;
  1736. border-radius: 0px 0px 0.25em 0.25em;
  1737. }
  1738. /*******************************
  1739. Overrides
  1740. *******************************/
  1741. /*******************************
  1742. Overrides
  1743. *******************************/