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.

1095 lines
26 KiB

9 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
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
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
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
10 years ago
10 years ago
10 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 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
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
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
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 UI 1.10.3 - Dropdown
  3. * http://github.com/semantic-org/semantic-ui/
  4. *
  5. *
  6. * Copyright 2014 Contributors
  7. * Released under the MIT license
  8. * http://opensource.org/licenses/MIT
  9. *
  10. */
  11. /*******************************
  12. Dropdown
  13. *******************************/
  14. .ui.dropdown {
  15. cursor: pointer;
  16. position: relative;
  17. display: inline-block;
  18. line-height: 1em;
  19. tap-highlight-color: rgba(0, 0, 0, 0);
  20. outline: none;
  21. text-align: left;
  22. -webkit-transition: border-radius 0.1s ease, width 0.2s ease;
  23. transition: border-radius 0.1s ease, width 0.2s ease;
  24. }
  25. /*******************************
  26. Content
  27. *******************************/
  28. /*--------------
  29. Menu
  30. ---------------*/
  31. .ui.dropdown .menu {
  32. cursor: auto;
  33. position: absolute;
  34. display: none;
  35. outline: none;
  36. top: 100%;
  37. margin: 0em;
  38. padding: 0em 0em;
  39. background: #ffffff;
  40. min-width: 100%;
  41. white-space: nowrap;
  42. font-size: 1rem;
  43. text-shadow: none;
  44. text-align: left;
  45. box-shadow: 0px 1px 4px 0px rgba(39, 41, 43, 0.15);
  46. border: 1px solid rgba(39, 41, 43, 0.15);
  47. border-radius: 0em 0em 0.2857rem 0.2857rem;
  48. -webkit-transition: opacity 0.2s ease;
  49. transition: opacity 0.2s ease;
  50. z-index: 11;
  51. will-change: transform, opacity;
  52. }
  53. /*--------------
  54. Hidden Input
  55. ---------------*/
  56. .ui.dropdown > input:not(.search):first-child,
  57. .ui.dropdown > select {
  58. display: none !important;
  59. }
  60. /*--------------
  61. Dropdown Icon
  62. ---------------*/
  63. .ui.dropdown > .dropdown.icon {
  64. width: auto;
  65. margin: 0em 0em 0em 1em;
  66. }
  67. .ui.dropdown .menu > .item .dropdown.icon {
  68. width: auto;
  69. float: right;
  70. margin: 0.2em 0em 0em 1em;
  71. }
  72. .ui.dropdown .menu > .item .dropdown.icon + .text {
  73. margin-right: 1em;
  74. }
  75. /*--------------
  76. Text
  77. ---------------*/
  78. .ui.dropdown > .text {
  79. display: inline-block;
  80. -webkit-transition: color 0.2s ease;
  81. transition: color 0.2s ease;
  82. }
  83. /*--------------
  84. Menu Item
  85. ---------------*/
  86. .ui.dropdown .menu > .item {
  87. position: relative;
  88. cursor: pointer;
  89. display: block;
  90. border: none;
  91. height: auto;
  92. border-top: none;
  93. line-height: 1.2em;
  94. color: rgba(0, 0, 0, 0.8);
  95. padding: 0.65rem 1.25rem !important;
  96. font-size: 1rem;
  97. text-transform: none;
  98. font-weight: normal;
  99. box-shadow: none;
  100. -webkit-touch-callout: none;
  101. }
  102. .ui.dropdown .menu > .item:first-child {
  103. border-top-width: 0px;
  104. }
  105. /*--------------
  106. Floated Content
  107. ---------------*/
  108. .ui.dropdown > .text > [class*="right floated"],
  109. .ui.dropdown .menu .item > [class*="right floated"] {
  110. float: right !important;
  111. margin-right: 0em !important;
  112. margin-left: 1em !important;
  113. }
  114. .ui.dropdown > .text > [class*="left floated"],
  115. .ui.dropdown .menu .item > [class*="left floated"] {
  116. float: left !important;
  117. margin-left: 0em !important;
  118. margin-right: 1em !important;
  119. }
  120. .ui.dropdown .menu .item > .icon.floated,
  121. .ui.dropdown .menu .item > .flag.floated,
  122. .ui.dropdown .menu .item > .image.floated,
  123. .ui.dropdown .menu .item > img.floated {
  124. margin-top: 0.2em;
  125. }
  126. /*--------------
  127. Menu Divider
  128. ---------------*/
  129. .ui.dropdown .menu > .header {
  130. margin: 1rem 0rem 0.75rem;
  131. padding: 0em 1.25rem;
  132. color: rgba(0, 0, 0, 0.85);
  133. font-size: 0.8em;
  134. font-weight: bold;
  135. text-transform: uppercase;
  136. }
  137. .ui.dropdown .menu > .divider {
  138. border-top: 1px solid rgba(0, 0, 0, 0.05);
  139. height: 0em;
  140. margin: 0.5em 0em;
  141. }
  142. .ui.dropdown .menu > .input {
  143. margin: 0.75rem 1.25rem;
  144. min-width: 200px;
  145. }
  146. .ui.dropdown .menu > .header + .input {
  147. margin-top: 0em;
  148. }
  149. .ui.dropdown .menu > .input:not(.transparent) input {
  150. padding: 0.5em 1em;
  151. }
  152. .ui.dropdown .menu > .input:not(.transparent) .button,
  153. .ui.dropdown .menu > .input:not(.transparent) .icon,
  154. .ui.dropdown .menu > .input:not(.transparent) .label {
  155. padding-top: 0.5em;
  156. padding-bottom: 0.5em;
  157. }
  158. /*-----------------
  159. Item Description
  160. -------------------*/
  161. .ui.dropdown > .text > .description,
  162. .ui.dropdown .menu > .item > .description {
  163. margin: 0em 0em 0em 1em;
  164. color: rgba(0, 0, 0, 0.4);
  165. }
  166. /*--------------
  167. Sub Menu
  168. ---------------*/
  169. .ui.dropdown .menu .menu {
  170. top: 0% !important;
  171. left: 100% !important;
  172. right: auto !important;
  173. margin: 0em 0em 0em -0.5em !important;
  174. border-radius: 0em 0.2857rem 0.2857rem 0em !important;
  175. z-index: 21 !important;
  176. }
  177. /* Hide Arrow */
  178. .ui.dropdown .menu .menu:after {
  179. display: none;
  180. }
  181. /*******************************
  182. Coupling
  183. *******************************/
  184. /*--------------
  185. Sub Elements
  186. ---------------*/
  187. /* Icons / Flags / Labels / Image */
  188. .ui.dropdown > .text > .icon,
  189. .ui.dropdown > .text > .label,
  190. .ui.dropdown > .text > .flag,
  191. .ui.dropdown > .text > img,
  192. .ui.dropdown > .text > .image {
  193. margin-top: 0em;
  194. }
  195. .ui.dropdown .menu > .item > .icon,
  196. .ui.dropdown .menu > .item > .label,
  197. .ui.dropdown .menu > .item > .flag,
  198. .ui.dropdown .menu > .item > .image,
  199. .ui.dropdown .menu > .item > img {
  200. margin-top: 0.2em;
  201. }
  202. .ui.dropdown > .text > .icon,
  203. .ui.dropdown > .text > .label,
  204. .ui.dropdown > .text > .flag,
  205. .ui.dropdown > .text > img,
  206. .ui.dropdown > .text > .image,
  207. .ui.dropdown .menu > .item > .icon,
  208. .ui.dropdown .menu > .item > .label,
  209. .ui.dropdown .menu > .item > .flag,
  210. .ui.dropdown .menu > .item > .image,
  211. .ui.dropdown .menu > .item > img {
  212. margin-left: 0em;
  213. margin-right: 0.75em;
  214. }
  215. /*--------------
  216. Image
  217. ---------------*/
  218. .ui.dropdown > .text > img,
  219. .ui.dropdown > .text > .image,
  220. .ui.dropdown .menu > .item > .image,
  221. .ui.dropdown .menu > .item > img {
  222. display: inline-block;
  223. vertical-align: middle;
  224. width: auto;
  225. max-height: 2.5em;
  226. }
  227. /*--------------
  228. Menu
  229. ---------------*/
  230. /* Remove Menu Item Divider */
  231. .ui.dropdown .ui.menu > .item:before,
  232. .ui.menu .ui.dropdown .menu > .item:before {
  233. display: none;
  234. }
  235. /* Prevent Menu Item Border */
  236. .ui.menu .ui.dropdown .menu .active.item {
  237. border-left: none;
  238. }
  239. /* Automatically float dropdown menu right on last menu item */
  240. .ui.menu .right.menu .dropdown:last-child .menu,
  241. .ui.menu .right.dropdown.item .menu,
  242. .ui.buttons > .ui.dropdown:last-child .menu {
  243. left: auto;
  244. right: 0em;
  245. }
  246. /*--------------
  247. Button
  248. ---------------*/
  249. /* No Margin On Icon Button */
  250. .ui.dropdown.icon.button > .dropdown.icon {
  251. margin: 0em;
  252. }
  253. .ui.dropdown.button:not(.pointing):not(.floating).active,
  254. .ui.dropdown.button:not(.pointing):not(.floating).visible {
  255. border-bottom-left-radius: 0em;
  256. border-bottom-right-radius: 0em;
  257. }
  258. /*******************************
  259. Types
  260. *******************************/
  261. /*--------------
  262. Selection
  263. ---------------*/
  264. /* Displays like a select box */
  265. .ui.selection.dropdown {
  266. cursor: pointer;
  267. word-wrap: break-word;
  268. white-space: normal;
  269. outline: 0;
  270. -webkit-transform: rotateZ(0deg);
  271. transform: rotateZ(0deg);
  272. min-width: 180px;
  273. background: #ffffff;
  274. display: inline-block;
  275. padding: 0.8em 1.1em;
  276. color: rgba(0, 0, 0, 0.8);
  277. box-shadow: none;
  278. border: 1px solid rgba(39, 41, 43, 0.15);
  279. border-radius: 0.2857rem;
  280. -webkit-transition: border-radius 0.1s ease, width 0.2s ease, box-shadow 0.2s ease, border 0.2s ease;
  281. transition: border-radius 0.1s ease, width 0.2s ease, box-shadow 0.2s ease, border 0.2s ease;
  282. }
  283. .ui.selection.dropdown.visible,
  284. .ui.selection.dropdown.active {
  285. z-index: 10;
  286. }
  287. select.ui.dropdown {
  288. height: 38px;
  289. padding: 0em;
  290. margin: 0em;
  291. visibility: hidden;
  292. }
  293. .ui.selection.dropdown > .text {
  294. margin-right: 2em;
  295. }
  296. .ui.selection.dropdown > .search.icon,
  297. .ui.selection.dropdown > .delete.icon,
  298. .ui.selection.dropdown > .dropdown.icon {
  299. cursor: pointer;
  300. position: absolute;
  301. top: auto;
  302. width: auto;
  303. margin: -0.8em;
  304. padding: 0.8em;
  305. right: 1.1em;
  306. opacity: 0.8;
  307. -webkit-transition: opacity 0.2s ease;
  308. transition: opacity 0.2s ease;
  309. }
  310. /* Compact */
  311. .ui.compact.selection.dropdown {
  312. min-width: 0px;
  313. }
  314. /* Selection Menu */
  315. .ui.selection.dropdown .menu {
  316. overflow-x: hidden;
  317. overflow-y: auto;
  318. -webkit-backface-visibility: hidden;
  319. backface-visibility: hidden;
  320. -webkit-overflow-scrolling: touch;
  321. border-top-width: 0px !important;
  322. width: auto;
  323. margin: 0px -1px;
  324. min-width: -webkit-calc(100% + 2px );
  325. min-width: calc(100% + 2px );
  326. outline: none;
  327. box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.08);
  328. -webkit-transition: box-shadow 0.2s ease, border 0.2s ease;
  329. transition: box-shadow 0.2s ease, border 0.2s ease;
  330. }
  331. .ui.selection.dropdown .menu:after,
  332. .ui.selection.dropdown .menu:before {
  333. display: none;
  334. }
  335. @media only screen and (max-width: 767px) {
  336. .ui.selection.dropdown .menu {
  337. max-height: 7.7142rem;
  338. }
  339. }
  340. @media only screen and (min-width: 768px) {
  341. .ui.selection.dropdown .menu {
  342. max-height: 10.2856rem;
  343. }
  344. }
  345. @media only screen and (min-width: 992px) {
  346. .ui.selection.dropdown .menu {
  347. max-height: 15.4284rem;
  348. }
  349. }
  350. @media only screen and (min-width: 1920px) {
  351. .ui.selection.dropdown .menu {
  352. max-height: 20.5712rem;
  353. }
  354. }
  355. /* Menu Item */
  356. .ui.selection.dropdown .menu > .item {
  357. border-top: 1px solid rgba(0, 0, 0, 0.05);
  358. padding-left: 1.1em !important;
  359. /* Add in spacing for scroll bar */
  360. padding-right: -webkit-calc(2.1em) !important;
  361. padding-right: calc(2.1em) !important;
  362. white-space: normal;
  363. word-wrap: normal;
  364. }
  365. /* Hover */
  366. .ui.selection.dropdown:hover {
  367. border-color: rgba(39, 41, 43, 0.3);
  368. box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.05);
  369. }
  370. /* Disabled */
  371. .ui.selection.dropdown.disabled,
  372. .ui.selection.dropdown.disabled:hover {
  373. cursor: default;
  374. box-shadow: none;
  375. color: rgba(0, 0, 0, 0.8);
  376. border: 1px solid rgba(39, 41, 43, 0.15);
  377. opacity: 0.3 !important;
  378. }
  379. /* Visible Hover */
  380. .ui.selection.visible.dropdown:hover {
  381. border-color: rgba(39, 41, 43, 0.3);
  382. box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.08);
  383. }
  384. .ui.selection.visible.dropdown:hover .menu {
  385. border: 1px solid rgba(39, 41, 43, 0.3);
  386. box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.1);
  387. }
  388. /* Visible */
  389. .ui.selection.dropdown.visible {
  390. border-color: rgba(39, 41, 43, 0.15);
  391. box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.08);
  392. }
  393. /* Active Item */
  394. .ui.selection.active.dropdown > .text:not(.default),
  395. .ui.selection.visible.dropdown > .text:not(.default) {
  396. font-weight: normal;
  397. color: rgba(0, 0, 0, 0.8);
  398. }
  399. /* Dropdown Icon */
  400. .ui.active.selection.dropdown > .dropdown.icon,
  401. .ui.visible.selection.dropdown > .dropdown.icon {
  402. opacity: 1;
  403. z-index: 3;
  404. }
  405. /* Connecting Border */
  406. .ui.active.selection.dropdown,
  407. .ui.visible.selection.dropdown {
  408. border-bottom-left-radius: 0em !important;
  409. border-bottom-right-radius: 0em !important;
  410. }
  411. /*--------------
  412. Searchable
  413. ---------------*/
  414. /* Search Selection */
  415. .ui.search.dropdown {
  416. min-width: '';
  417. }
  418. /* Search Dropdown */
  419. .ui.search.dropdown > input.search {
  420. background: none transparent !important;
  421. border: none !important;
  422. box-shadow: none !important;
  423. border-radius: 0em !important;
  424. cursor: pointer;
  425. top: 0em;
  426. left: 0em;
  427. width: 100%;
  428. outline: none;
  429. -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  430. padding: inherit;
  431. }
  432. /* Text Layering */
  433. .ui.search.dropdown > input.search {
  434. position: absolute;
  435. z-index: 2;
  436. }
  437. .ui.search.dropdown > .text {
  438. cursor: text;
  439. position: relative;
  440. z-index: 3;
  441. }
  442. /* Search Selection */
  443. .ui.search.selection.dropdown > input.search {
  444. line-height: 1.2142em;
  445. padding: 0.6929em 1.1em;
  446. }
  447. /* Active/Visible Search */
  448. .ui.search.dropdown.active > input.search,
  449. .ui.search.dropdown.visible > input.search {
  450. cursor: auto;
  451. }
  452. .ui.search.dropdown.active > .text,
  453. .ui.search.dropdown.visible > .text {
  454. pointer-events: none;
  455. }
  456. .ui.active.search.dropdown > input.search:focus + .text {
  457. color: rgba(0, 0, 0, 0.4) !important;
  458. }
  459. /* Search Menu */
  460. .ui.search.dropdown .menu {
  461. overflow-x: hidden;
  462. overflow-y: auto;
  463. -webkit-backface-visibility: hidden;
  464. backface-visibility: hidden;
  465. -webkit-overflow-scrolling: touch;
  466. }
  467. @media only screen and (max-width: 767px) {
  468. .ui.search.dropdown .menu {
  469. max-height: 7.7142rem;
  470. }
  471. }
  472. @media only screen and (min-width: 768px) {
  473. .ui.search.dropdown .menu {
  474. max-height: 10.2856rem;
  475. }
  476. }
  477. @media only screen and (min-width: 992px) {
  478. .ui.search.dropdown .menu {
  479. max-height: 15.4284rem;
  480. }
  481. }
  482. @media only screen and (min-width: 1920px) {
  483. .ui.search.dropdown .menu {
  484. max-height: 20.5712rem;
  485. }
  486. }
  487. /*--------------
  488. Inline
  489. ---------------*/
  490. .ui.inline.dropdown {
  491. cursor: pointer;
  492. display: inline-block;
  493. color: inherit;
  494. }
  495. .ui.inline.dropdown .dropdown.icon {
  496. margin: 0em 0.5em 0em 0.25em;
  497. vertical-align: top;
  498. }
  499. .ui.inline.dropdown > .text {
  500. font-weight: bold;
  501. }
  502. .ui.inline.dropdown .menu {
  503. cursor: auto;
  504. margin-top: 0.25em;
  505. border-radius: 0.2857rem;
  506. }
  507. /*******************************
  508. States
  509. *******************************/
  510. /*--------------------
  511. Hover
  512. ----------------------*/
  513. /* Menu Item Hover */
  514. .ui.dropdown .menu > .item:hover {
  515. background: rgba(0, 0, 0, 0.05);
  516. color: rgba(0, 0, 0, 0.8);
  517. z-index: 12;
  518. }
  519. /*--------------------
  520. Active
  521. ----------------------*/
  522. /* Menu Item Active */
  523. .ui.dropdown .menu .active.item {
  524. background: transparent;
  525. font-weight: bold;
  526. color: rgba(0, 0, 0, 0.8);
  527. box-shadow: none;
  528. z-index: 12;
  529. }
  530. /*--------------------
  531. Default Text
  532. ----------------------*/
  533. .ui.dropdown > .default.text,
  534. .ui.default.dropdown > .text {
  535. color: rgba(179, 179, 179, 0.7);
  536. }
  537. .ui.dropdown:hover > .default.text,
  538. .ui.default.dropdown:hover > .text {
  539. color: rgba(140, 140, 140, 0.7);
  540. }
  541. /*--------------------
  542. Loading
  543. ----------------------*/
  544. .ui.loading.dropdown > .text {
  545. -webkit-transition: none;
  546. transition: none;
  547. }
  548. .ui.dropdown > .loading.menu {
  549. display: block;
  550. visibility: hidden;
  551. z-index: -1;
  552. }
  553. /*--------------------
  554. Keyboard Select
  555. ----------------------*/
  556. /* Selected Item */
  557. .ui.dropdown.selected,
  558. .ui.dropdown .menu .selected.item {
  559. background: rgba(0, 0, 0, 0.03);
  560. color: rgba(0, 0, 0, 0.8);
  561. }
  562. /*--------------------
  563. Search Filtered
  564. ----------------------*/
  565. /* Filtered Item */
  566. .ui.dropdown > .filtered.text {
  567. visibility: hidden;
  568. }
  569. .ui.dropdown .filtered.item {
  570. display: none;
  571. }
  572. /*--------------------
  573. Error
  574. ----------------------*/
  575. .ui.dropdown.error,
  576. .ui.dropdown.error > .text,
  577. .ui.dropdown.error > .default.text {
  578. color: #a94442;
  579. }
  580. .ui.selection.dropdown.error {
  581. background: #fff0f0;
  582. border-color: #dbb1b1;
  583. }
  584. .ui.selection.dropdown.error:hover {
  585. border-color: #dbb1b1;
  586. }
  587. .ui.dropdown.error > .menu,
  588. .ui.dropdown.error > .menu .menu {
  589. border-color: #dbb1b1;
  590. }
  591. .ui.dropdown.error > .menu > .item {
  592. color: #d95c5c;
  593. }
  594. /* Item Hover */
  595. .ui.dropdown.error > .menu > .item:hover {
  596. background-color: #fff2f2;
  597. }
  598. /* Item Active */
  599. .ui.dropdown.error > .menu .active.item {
  600. background-color: #fdcfcf;
  601. }
  602. /*--------------------
  603. Disabled
  604. ----------------------*/
  605. /* Disabled */
  606. .ui.disabled.dropdown {
  607. cursor: default;
  608. pointer-events: none;
  609. opacity: 0.3;
  610. }
  611. /*******************************
  612. Variations
  613. *******************************/
  614. /*--------------
  615. Direction
  616. ---------------*/
  617. /* Flyout Direction */
  618. .ui.dropdown .menu {
  619. left: 0px;
  620. }
  621. /* Default Side (Right) */
  622. .ui.dropdown .right.menu > .menu,
  623. .ui.dropdown .menu .right.menu {
  624. left: 100% !important;
  625. right: auto !important;
  626. }
  627. /* Left Flyout Menu */
  628. .ui.dropdown > .left.menu .menu,
  629. .ui.dropdown .menu .left.menu {
  630. left: auto !important;
  631. right: 100% !important;
  632. }
  633. .ui.dropdown .item .left.dropdown.icon,
  634. .ui.dropdown .left.menu .item .dropdown.icon {
  635. width: auto;
  636. float: left;
  637. margin: 0.2em 0.75em 0em 0em;
  638. }
  639. .ui.dropdown .item .left.dropdown.icon,
  640. .ui.dropdown .left.menu .item .dropdown.icon {
  641. width: auto;
  642. float: left;
  643. margin: 0.2em 0.75em 0em 0em;
  644. }
  645. .ui.dropdown .item .left.dropdown.icon + .text,
  646. .ui.dropdown .left.menu .item .dropdown.icon + .text {
  647. margin-left: 1em;
  648. }
  649. /*--------------
  650. Upward
  651. ---------------*/
  652. .ui.upward.dropdown > .menu {
  653. top: auto;
  654. bottom: 100%;
  655. box-shadow: 0px 0px 4px 0px rgba(39, 41, 43, 0.15);
  656. border-radius: 0.2857rem 0.2857rem 0em 0em;
  657. }
  658. /* Active Upward */
  659. .ui.simple.upward.active.dropdown,
  660. .ui.simple.upward.dropdown:hover {
  661. border-radius: 0.2857rem 0.2857rem 0em 0em !important;
  662. }
  663. .ui.upward.dropdown.button:not(.pointing):not(.floating).active,
  664. .ui.upward.dropdown.button:not(.pointing):not(.floating).visible {
  665. border-radius: 0.2857rem 0.2857rem 0em 0em;
  666. }
  667. /* Selection */
  668. .ui.upward.selection.dropdown .menu {
  669. border-top-width: 1px !important;
  670. border-bottom-width: 0px !important;
  671. }
  672. .ui.upward.selection.dropdown:hover {
  673. box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.05);
  674. }
  675. .ui.upward.selection.visible.dropdown:hover {
  676. box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.05);
  677. }
  678. .ui.active.upward.selection.dropdown,
  679. .ui.visible.upward.selection.dropdown {
  680. border-radius: 0em 0em 0.2857rem 0.2857rem !important;
  681. }
  682. .ui.upward.selection.dropdown.visible {
  683. box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.08);
  684. }
  685. .ui.upward.selection.visible.dropdown:hover .menu {
  686. box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.08);
  687. }
  688. /*--------------
  689. Simple
  690. ---------------*/
  691. /* Displays without javascript */
  692. .ui.simple.dropdown .menu:before,
  693. .ui.simple.dropdown .menu:after {
  694. display: none;
  695. }
  696. .ui.simple.dropdown .menu {
  697. position: absolute;
  698. display: block;
  699. overflow: hidden;
  700. top: -9999px !important;
  701. opacity: 0;
  702. width: 0;
  703. height: 0;
  704. -webkit-transition: opacity 0.2s ease;
  705. transition: opacity 0.2s ease;
  706. }
  707. .ui.simple.active.dropdown,
  708. .ui.simple.dropdown:hover {
  709. border-bottom-left-radius: 0em !important;
  710. border-bottom-right-radius: 0em !important;
  711. }
  712. .ui.simple.active.dropdown > .menu,
  713. .ui.simple.dropdown:hover > .menu {
  714. overflow: visible;
  715. width: auto;
  716. height: auto;
  717. top: 100% !important;
  718. opacity: 1;
  719. }
  720. .ui.simple.dropdown > .menu > .item:active > .menu,
  721. .ui.simple.dropdown:hover > .menu > .item:hover > .menu {
  722. overflow: visible;
  723. width: auto;
  724. height: auto;
  725. top: 0% !important;
  726. left: 100% !important;
  727. opacity: 1;
  728. }
  729. .ui.simple.disabled.dropdown:hover .menu {
  730. display: none;
  731. height: 0px;
  732. width: 0px;
  733. overflow: hidden;
  734. }
  735. /* Visible */
  736. .ui.simple.visible.dropdown > .menu {
  737. display: block;
  738. }
  739. /*--------------
  740. Fluid
  741. ---------------*/
  742. .ui.fluid.dropdown {
  743. display: block;
  744. width: 100%;
  745. min-width: 0em;
  746. }
  747. .ui.fluid.dropdown > .dropdown.icon {
  748. float: right;
  749. }
  750. /*--------------
  751. Floating
  752. ---------------*/
  753. .ui.floating.dropdown .menu {
  754. left: 0;
  755. right: auto;
  756. box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.15);
  757. border-radius: 0.2857rem;
  758. }
  759. .ui.floating.dropdown > .menu {
  760. margin-top: 0.5em !important;
  761. }
  762. /*--------------
  763. Pointing
  764. ---------------*/
  765. .ui.pointing.dropdown > .menu {
  766. top: 100%;
  767. margin-top: 0.75em;
  768. border-radius: 0.2857rem;
  769. }
  770. .ui.pointing.dropdown > .menu:after {
  771. display: block;
  772. position: absolute;
  773. pointer-events: none;
  774. content: '';
  775. visibility: visible;
  776. -webkit-transform: rotate(45deg);
  777. -ms-transform: rotate(45deg);
  778. transform: rotate(45deg);
  779. width: 0.5em;
  780. height: 0.5em;
  781. box-shadow: -1px -1px 0px 1px rgba(0, 0, 0, 0.1);
  782. background: #ffffff;
  783. z-index: 2;
  784. }
  785. .ui.pointing.dropdown > .menu:after {
  786. top: -0.25em;
  787. left: 50%;
  788. margin: 0em 0em 0em -0.25em;
  789. }
  790. /* Top Left Pointing */
  791. .ui.top.left.pointing.dropdown > .menu {
  792. top: 100%;
  793. bottom: auto;
  794. left: 0%;
  795. right: auto;
  796. margin: 1em 0em 0em;
  797. }
  798. .ui.top.left.pointing.dropdown > .menu {
  799. top: 100%;
  800. bottom: auto;
  801. left: 0%;
  802. right: auto;
  803. margin: 1em 0em 0em;
  804. }
  805. .ui.top.left.pointing.dropdown > .menu:after {
  806. top: -0.25em;
  807. left: 1em;
  808. right: auto;
  809. margin: 0em;
  810. -webkit-transform: rotate(45deg);
  811. -ms-transform: rotate(45deg);
  812. transform: rotate(45deg);
  813. }
  814. /* Top Right Pointing */
  815. .ui.top.right.pointing.dropdown > .menu {
  816. top: 100%;
  817. bottom: auto;
  818. right: 0%;
  819. left: auto;
  820. margin: 1em 0em 0em;
  821. }
  822. .ui.top.right.pointing.dropdown > .menu:after {
  823. top: -0.25em;
  824. left: auto;
  825. right: 1em;
  826. margin: 0em;
  827. -webkit-transform: rotate(45deg);
  828. -ms-transform: rotate(45deg);
  829. transform: rotate(45deg);
  830. }
  831. /* Left Pointing */
  832. .ui.left.pointing.dropdown > .menu {
  833. top: 0%;
  834. left: 100%;
  835. right: auto;
  836. margin: 0em 0em 0em 1em;
  837. }
  838. .ui.left.pointing.dropdown > .menu:after {
  839. top: 1em;
  840. left: -0.25em;
  841. margin: 0em 0em 0em 0em;
  842. -webkit-transform: rotate(-45deg);
  843. -ms-transform: rotate(-45deg);
  844. transform: rotate(-45deg);
  845. }
  846. /* Right Pointing */
  847. .ui.right.pointing.dropdown > .menu {
  848. top: 0%;
  849. left: auto;
  850. right: 100%;
  851. margin: 0em 1em 0em 0em;
  852. }
  853. .ui.right.pointing.dropdown > .menu:after {
  854. top: 1em;
  855. left: auto;
  856. right: -0.25em;
  857. margin: 0em 0em 0em 0em;
  858. -webkit-transform: rotate(135deg);
  859. -ms-transform: rotate(135deg);
  860. transform: rotate(135deg);
  861. }
  862. /* Bottom Pointing */
  863. .ui.bottom.pointing.dropdown > .menu {
  864. top: auto;
  865. bottom: 100%;
  866. left: 0%;
  867. right: auto;
  868. margin: 0em 0em 1em;
  869. }
  870. .ui.bottom.pointing.dropdown > .menu:after {
  871. top: auto;
  872. bottom: -0.25em;
  873. right: auto;
  874. margin: 0em;
  875. -webkit-transform: rotate(-135deg);
  876. -ms-transform: rotate(-135deg);
  877. transform: rotate(-135deg);
  878. }
  879. /* Reverse Sub-Menu Direction */
  880. .ui.bottom.pointing.dropdown > .menu .menu {
  881. top: auto !important;
  882. bottom: 0px !important;
  883. }
  884. /* Bottom Left */
  885. .ui.bottom.left.pointing.dropdown > .menu {
  886. left: 0%;
  887. right: auto;
  888. }
  889. .ui.bottom.left.pointing.dropdown > .menu:after {
  890. left: 1em;
  891. right: auto;
  892. }
  893. /* Bottom Right */
  894. .ui.bottom.right.pointing.dropdown > .menu {
  895. right: 0%;
  896. left: auto;
  897. }
  898. .ui.bottom.right.pointing.dropdown > .menu:after {
  899. left: auto;
  900. right: 1em;
  901. }
  902. /*******************************
  903. Theme Overrides
  904. *******************************/
  905. /* Dropdown Carets */
  906. @font-face {
  907. font-family: 'Dropdown';
  908. src: url(data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMggjB5AAAAC8AAAAYGNtYXAPfuIIAAABHAAAAExnYXNwAAAAEAAAAWgAAAAIZ2x5Zjo82LgAAAFwAAABVGhlYWQAQ88bAAACxAAAADZoaGVhAwcB6QAAAvwAAAAkaG10eAS4ABIAAAMgAAAAIGxvY2EBNgDeAAADQAAAABJtYXhwAAoAFgAAA1QAAAAgbmFtZVcZpu4AAAN0AAABRXBvc3QAAwAAAAAEvAAAACAAAwIAAZAABQAAAUwBZgAAAEcBTAFmAAAA9QAZAIQAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADw2gHg/+D/4AHgACAAAAABAAAAAAAAAAAAAAAgAAAAAAACAAAAAwAAABQAAwABAAAAFAAEADgAAAAKAAgAAgACAAEAIPDa//3//wAAAAAAIPDX//3//wAB/+MPLQADAAEAAAAAAAAAAAAAAAEAAf//AA8AAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAIABJQElABMAABM0NzY3BTYXFhUUDwEGJwYvASY1AAUGBwEACAUGBoAFCAcGgAUBEgcGBQEBAQcECQYHfwYBAQZ/BwYAAQAAAG4BJQESABMAADc0PwE2MzIfARYVFAcGIyEiJyY1AAWABgcIBYAGBgUI/wAHBgWABwaABQWABgcHBgUFBgcAAAABABIASQC3AW4AEwAANzQ/ATYXNhcWHQEUBwYnBi8BJjUSBoAFCAcFBgYFBwgFgAbbBwZ/BwEBBwQJ/wgEBwEBB38GBgAAAAABAAAASQClAW4AEwAANxE0NzYzMh8BFhUUDwEGIyInJjUABQYHCAWABgaABQgHBgVbAQAIBQYGgAUIBwWABgYFBwAAAAEAAAABAADZuaKOXw889QALAgAAAAAA0ABHWAAAAADQAEdYAAAAAAElAW4AAAAIAAIAAAAAAAAAAQAAAeD/4AAAAgAAAAAAASUAAQAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAABAAAAASUAAAElAAAAtwASALcAAAAAAAAACgAUAB4AQgBkAIgAqgAAAAEAAAAIABQAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAOAK4AAQAAAAAAAQAOAAAAAQAAAAAAAgAOAEcAAQAAAAAAAwAOACQAAQAAAAAABAAOAFUAAQAAAAAABQAWAA4AAQAAAAAABgAHADIAAQAAAAAACgA0AGMAAwABBAkAAQAOAAAAAwABBAkAAgAOAEcAAwABBAkAAwAOACQAAwABBAkABAAOAFUAAwABBAkABQAWAA4AAwABBAkABgAOADkAAwABBAkACgA0AGMAaQBjAG8AbQBvAG8AbgBWAGUAcgBzAGkAbwBuACAAMQAuADAAaQBjAG8AbQBvAG8Abmljb21vb24AaQBjAG8AbQBvAG8AbgBSAGUAZwB1AGwAYQByAGkAYwBvAG0AbwBvAG4ARgBvAG4AdAAgAGcAZQBuAGUAcgBhAHQAZQBkACAAYgB5ACAASQBjAG8ATQBvAG8AbgAuAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=) format('truetype'), url(data:application/font-woff;charset=utf-8;base64,d09GRk9UVE8AAAVwAAoAAAAABSgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABDRkYgAAAA9AAAAdkAAAHZLDXE/09TLzIAAALQAAAAYAAAAGAIIweQY21hcAAAAzAAAABMAAAATA9+4ghnYXNwAAADfAAAAAgAAAAIAAAAEGhlYWQAAAOEAAAANgAAADYAQ88baGhlYQAAA7wAAAAkAAAAJAMHAelobXR4AAAD4AAAACAAAAAgBLgAEm1heHAAAAQAAAAABgAAAAYACFAAbmFtZQAABAgAAAFFAAABRVcZpu5wb3N0AAAFUAAAACAAAAAgAAMAAAEABAQAAQEBCGljb21vb24AAQIAAQA6+BwC+BsD+BgEHgoAGVP/i4seCgAZU/+LiwwHi2v4lPh0BR0AAACIDx0AAACNER0AAAAJHQAAAdASAAkBAQgPERMWGyAlKmljb21vb25pY29tb29udTB1MXUyMHVGMEQ3dUYwRDh1RjBEOXVGMERBAAACAYkABgAIAgABAAQABwAKAA0AVgCfAOgBL/yUDvyUDvyUDvuUDvtvi/emFYuQjZCOjo+Pj42Qiwj3lIsFkIuQiY6Hj4iNhouGi4aJh4eHCPsU+xQFiIiGiYaLhouHjYeOCPsU9xQFiI+Jj4uQCA77b4v3FBWLkI2Pjo8I9xT3FAWPjo+NkIuQi5CJjogI9xT7FAWPh42Hi4aLhomHh4eIiIaJhosI+5SLBYaLh42HjoiPiY+LkAgO+92d928Vi5CNkI+OCPcU9xQFjo+QjZCLkIuPiY6Hj4iNhouGCIv7lAWLhomHh4iIh4eJhouGi4aNiI8I+xT3FAWHjomPi5AIDvvdi+YVi/eUBYuQjZCOjo+Pj42Qi5CLkImOhwj3FPsUBY+IjYaLhouGiYeHiAj7FPsUBYiHhomGi4aLh42Hj4iOiY+LkAgO+JQU+JQViwwKAAAAAAMCAAGQAAUAAAFMAWYAAABHAUwBZgAAAPUAGQCEAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAQAAA8NoB4P/g/+AB4AAgAAAAAQAAAAAAAAAAAAAAIAAAAAAAAgAAAAMAAAAUAAMAAQAAABQABAA4AAAACgAIAAIAAgABACDw2v/9//8AAAAAACDw1//9//8AAf/jDy0AAwABAAAAAAAAAAAAAAABAAH//wAPAAEAAAABAAA5emozXw889QALAgAAAAAA0ABHWAAAAADQAEdYAAAAAAElAW4AAAAIAAIAAAAAAAAAAQAAAeD/4AAAAgAAAAAAASUAAQAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAABAAAAASUAAAElAAAAtwASALcAAAAAUAAACAAAAAAADgCuAAEAAAAAAAEADgAAAAEAAAAAAAIADgBHAAEAAAAAAAMADgAkAAEAAAAAAAQADgBVAAEAAAAAAAUAFgAOAAEAAAAAAAYABwAyAAEAAAAAAAoANABjAAMAAQQJAAEADgAAAAMAAQQJAAIADgBHAAMAAQQJAAMADgAkAAMAAQQJAAQADgBVAAMAAQQJAAUAFgAOAAMAAQQJAAYADgA5AAMAAQQJAAoANABjAGkAYwBvAG0AbwBvAG4AVgBlAHIAcwBpAG8AbgAgADEALgAwAGkAYwBvAG0AbwBvAG5pY29tb29uAGkAYwBvAG0AbwBvAG4AUgBlAGcAdQBsAGEAcgBpAGMAbwBtAG8AbwBuAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA) format('woff');
  909. font-weight: normal;
  910. font-style: normal;
  911. }
  912. .ui.dropdown > .dropdown.icon {
  913. font-family: 'Dropdown';
  914. line-height: 1;
  915. height: 1em;
  916. width: 1.23em;
  917. -webkit-backface-visibility: hidden;
  918. backface-visibility: hidden;
  919. font-weight: normal;
  920. font-style: normal;
  921. text-align: center;
  922. }
  923. .ui.dropdown > .dropdown.icon {
  924. width: auto;
  925. }
  926. .ui.dropdown > .dropdown.icon:before {
  927. content: '\f0d7';
  928. }
  929. /* Sub Menu */
  930. .ui.dropdown .menu .item .dropdown.icon:before {
  931. content: '\f0da' /*rtl:'\f0d9'*/;
  932. }
  933. .ui.dropdown .item .left.dropdown.icon:before,
  934. .ui.dropdown .left.menu .item .dropdown.icon:before {
  935. content: "\f0d9" /*rtl:"\f0da"*/;
  936. }
  937. /* Upward Dropdown */
  938. .ui.upward.dropdown > .dropdown.icon:before {
  939. content: "\f0d8";
  940. }
  941. /* Vertical Menu Dropdown */
  942. .ui.vertical.menu .dropdown.item > .dropdown.icon:before {
  943. content: "\f0da" /*rtl:"\f0d9"*/;
  944. }
  945. /* Icons for Reference
  946. .dropdown.down.icon {
  947. content: "\f0d7";
  948. }
  949. .dropdown.up.icon {
  950. content: "\f0d8";
  951. }
  952. .dropdown.left.icon {
  953. content: "\f0d9";
  954. }
  955. .dropdown.icon.icon {
  956. content: "\f0da";
  957. }
  958. */
  959. /*******************************
  960. User Overrides
  961. *******************************/