dropdown.css 46 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899
  1. /*!
  2. * # Fomantic-UI - Dropdown
  3. * http://github.com/fomantic/Fomantic-UI/
  4. *
  5. *
  6. * Released under the MIT license
  7. * http://opensource.org/licenses/MIT
  8. *
  9. */
  10. /*******************************
  11. Dropdown
  12. *******************************/
  13. .ui.dropdown {
  14. cursor: pointer;
  15. position: relative;
  16. display: inline-block;
  17. outline: none;
  18. text-align: left;
  19. -webkit-transition: width 0.1s ease, -webkit-box-shadow 0.1s ease;
  20. transition: width 0.1s ease, -webkit-box-shadow 0.1s ease;
  21. transition: box-shadow 0.1s ease, width 0.1s ease;
  22. transition: box-shadow 0.1s ease, width 0.1s ease, -webkit-box-shadow 0.1s ease;
  23. -webkit-user-select: none;
  24. -moz-user-select: none;
  25. -ms-user-select: none;
  26. user-select: none;
  27. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  28. }
  29. /*******************************
  30. Content
  31. *******************************/
  32. /*--------------
  33. Menu
  34. ---------------*/
  35. .ui.dropdown .menu {
  36. cursor: auto;
  37. position: absolute;
  38. display: none;
  39. outline: none;
  40. top: 100%;
  41. min-width: -webkit-max-content;
  42. min-width: -moz-max-content;
  43. min-width: max-content;
  44. margin: 0;
  45. padding: 0 0;
  46. background: #FFFFFF;
  47. font-size: 1em;
  48. text-shadow: none;
  49. text-align: left;
  50. -webkit-box-shadow: 0 2px 3px 0 rgba(34, 36, 38, 0.15);
  51. box-shadow: 0 2px 3px 0 rgba(34, 36, 38, 0.15);
  52. border: 1px solid rgba(34, 36, 38, 0.15);
  53. border-radius: 0.28571429rem;
  54. -webkit-transition: opacity 0.1s ease;
  55. transition: opacity 0.1s ease;
  56. z-index: 11;
  57. will-change: transform, opacity;
  58. }
  59. .ui.dropdown .menu > * {
  60. white-space: nowrap;
  61. }
  62. /*--------------
  63. Hidden Input
  64. ---------------*/
  65. .ui.dropdown > input:not(.search):first-child,
  66. .ui.dropdown > select {
  67. display: none !important;
  68. }
  69. /*--------------
  70. Dropdown Icon
  71. ---------------*/
  72. .ui.dropdown:not(.labeled) > .dropdown.icon {
  73. position: relative;
  74. width: auto;
  75. font-size: 0.85714286em;
  76. margin: 0 0 0 1em;
  77. }
  78. .ui.dropdown .menu > .item .dropdown.icon {
  79. width: auto;
  80. float: right;
  81. margin: 0em 0 0 1em;
  82. }
  83. .ui.dropdown .menu > .item .dropdown.icon + .text {
  84. margin-right: 1em;
  85. }
  86. /*--------------
  87. Text
  88. ---------------*/
  89. .ui.dropdown > .text {
  90. display: inline-block;
  91. -webkit-transition: none;
  92. transition: none;
  93. }
  94. /*--------------
  95. Menu Item
  96. ---------------*/
  97. .ui.dropdown .menu > .item {
  98. position: relative;
  99. cursor: pointer;
  100. display: block;
  101. border: none;
  102. height: auto;
  103. min-height: 2.57142857rem;
  104. text-align: left;
  105. border-top: none;
  106. line-height: 1em;
  107. font-size: 1rem;
  108. color: rgba(0, 0, 0, 0.87);
  109. padding: 0.78571429rem 1.14285714rem !important;
  110. text-transform: none;
  111. font-weight: normal;
  112. -webkit-box-shadow: none;
  113. box-shadow: none;
  114. -webkit-touch-callout: none;
  115. }
  116. .ui.dropdown .menu > .item:first-child {
  117. border-top-width: 0;
  118. }
  119. /*--------------
  120. Floated Content
  121. ---------------*/
  122. .ui.dropdown > .text > [class*="right floated"],
  123. .ui.dropdown .menu .item > [class*="right floated"] {
  124. float: right !important;
  125. margin-right: 0 !important;
  126. margin-left: 1em !important;
  127. }
  128. .ui.dropdown > .text > [class*="left floated"],
  129. .ui.dropdown .menu .item > [class*="left floated"] {
  130. float: left !important;
  131. margin-left: 0 !important;
  132. margin-right: 1em !important;
  133. }
  134. .ui.dropdown .menu .item > .icon.floated,
  135. .ui.dropdown .menu .item > .flag.floated,
  136. .ui.dropdown .menu .item > .image.floated,
  137. .ui.dropdown .menu .item > img.floated {
  138. margin-top: 0em;
  139. }
  140. /*--------------
  141. Menu Divider
  142. ---------------*/
  143. .ui.dropdown .menu > .header {
  144. margin: 1rem 0 0.75rem;
  145. padding: 0 1.14285714rem;
  146. font-weight: bold;
  147. text-transform: uppercase;
  148. }
  149. .ui.dropdown .menu > .header:not(.ui) {
  150. color: rgba(0, 0, 0, 0.85);
  151. font-size: 0.78571429em;
  152. }
  153. .ui.dropdown .menu > .divider {
  154. border-top: 1px solid rgba(34, 36, 38, 0.1);
  155. height: 0;
  156. margin: 0.5em 0;
  157. }
  158. .ui.dropdown .menu > .horizontal.divider {
  159. border-top: none;
  160. }
  161. .ui.dropdown.dropdown .menu > .input {
  162. width: auto;
  163. display: -webkit-box;
  164. display: -ms-flexbox;
  165. display: flex;
  166. margin: 1.14285714rem 0.78571429rem;
  167. min-width: 10rem;
  168. }
  169. .ui.dropdown .menu > .header + .input {
  170. margin-top: 0;
  171. }
  172. .ui.dropdown .menu > .input:not(.transparent) input {
  173. padding: 0.5em 1em;
  174. }
  175. .ui.dropdown .menu > .input:not(.transparent) .button,
  176. .ui.dropdown .menu > .input:not(.transparent) .icon,
  177. .ui.dropdown .menu > .input:not(.transparent) .label {
  178. padding-top: 0.5em;
  179. padding-bottom: 0.5em;
  180. }
  181. /*-----------------
  182. Item Description
  183. -------------------*/
  184. .ui.dropdown > .text > .description,
  185. .ui.dropdown .menu > .item > .description {
  186. float: right;
  187. margin: 0 0 0 1em;
  188. color: rgba(0, 0, 0, 0.4);
  189. }
  190. /*-----------------
  191. Message
  192. -------------------*/
  193. .ui.dropdown .menu > .message {
  194. padding: 0.78571429rem 1.14285714rem;
  195. font-weight: normal;
  196. }
  197. .ui.dropdown .menu > .message:not(.ui) {
  198. color: rgba(0, 0, 0, 0.4);
  199. }
  200. /*--------------
  201. Sub Menu
  202. ---------------*/
  203. .ui.dropdown .menu .menu {
  204. top: 0;
  205. left: 100%;
  206. right: auto;
  207. margin: 0 0 0 -0.5em !important;
  208. border-radius: 0.28571429rem !important;
  209. z-index: 21 !important;
  210. }
  211. /* Hide Arrow */
  212. .ui.dropdown .menu .menu:after {
  213. display: none;
  214. }
  215. /*--------------
  216. Sub Elements
  217. ---------------*/
  218. /* Icons / Flags / Labels / Image */
  219. .ui.dropdown > .text > .icon,
  220. .ui.dropdown > .text > .label,
  221. .ui.dropdown > .text > .flag,
  222. .ui.dropdown > .text > img,
  223. .ui.dropdown > .text > .image {
  224. margin-top: 0em;
  225. }
  226. .ui.dropdown .menu > .item > .icon,
  227. .ui.dropdown .menu > .item > .label,
  228. .ui.dropdown .menu > .item > .flag,
  229. .ui.dropdown .menu > .item > .image,
  230. .ui.dropdown .menu > .item > img {
  231. margin-top: 0em;
  232. }
  233. .ui.dropdown > .text > .icon,
  234. .ui.dropdown > .text > .label,
  235. .ui.dropdown > .text > .flag,
  236. .ui.dropdown > .text > img,
  237. .ui.dropdown > .text > .image,
  238. .ui.dropdown .menu > .item > .icon,
  239. .ui.dropdown .menu > .item > .label,
  240. .ui.dropdown .menu > .item > .flag,
  241. .ui.dropdown .menu > .item > .image,
  242. .ui.dropdown .menu > .item > img {
  243. margin-left: 0;
  244. float: none;
  245. margin-right: 0.78571429rem;
  246. }
  247. /*--------------
  248. Image
  249. ---------------*/
  250. .ui.dropdown > .text > img,
  251. .ui.dropdown > .text > .image:not(.icon),
  252. .ui.dropdown .menu > .item > .image:not(.icon),
  253. .ui.dropdown .menu > .item > img {
  254. display: inline-block;
  255. vertical-align: top;
  256. width: auto;
  257. margin-top: -0.5em;
  258. margin-bottom: -0.5em;
  259. max-height: 2em;
  260. }
  261. /*******************************
  262. Coupling
  263. *******************************/
  264. /*--------------
  265. Menu
  266. ---------------*/
  267. /* Remove Menu Item Divider */
  268. .ui.dropdown .ui.menu > .item:before,
  269. .ui.menu .ui.dropdown .menu > .item:before {
  270. display: none;
  271. }
  272. /* Prevent Menu Item Border */
  273. .ui.menu .ui.dropdown .menu .active.item {
  274. border-left: none;
  275. }
  276. /* Automatically float dropdown menu right on last menu item */
  277. .ui.menu .right.menu .dropdown:last-child .menu,
  278. .ui.menu .right.dropdown.item .menu,
  279. .ui.buttons > .ui.dropdown:last-child .menu {
  280. left: auto;
  281. right: 0;
  282. }
  283. /*--------------
  284. Label
  285. ---------------*/
  286. /* Dropdown Menu */
  287. .ui.label.dropdown .menu {
  288. min-width: 100%;
  289. }
  290. /*--------------
  291. Button
  292. ---------------*/
  293. /* No Margin On Icon Button */
  294. .ui.dropdown.icon.button > .dropdown.icon {
  295. margin: 0;
  296. }
  297. .ui.button.dropdown .menu {
  298. min-width: 100%;
  299. }
  300. /*******************************
  301. Types
  302. *******************************/
  303. select.ui.dropdown {
  304. height: 38px;
  305. padding: 0.5em;
  306. border: 1px solid rgba(34, 36, 38, 0.15);
  307. visibility: visible;
  308. }
  309. /*--------------
  310. Selection
  311. ---------------*/
  312. /* Displays like a select box */
  313. .ui.selection.dropdown {
  314. cursor: pointer;
  315. word-wrap: break-word;
  316. line-height: 1em;
  317. white-space: normal;
  318. outline: 0;
  319. -webkit-transform: rotateZ(0deg);
  320. transform: rotateZ(0deg);
  321. min-width: 14em;
  322. min-height: 2.71428571em;
  323. background: #FFFFFF;
  324. display: inline-block;
  325. padding: 0.78571429em 3.2em 0.78571429em 1em;
  326. color: rgba(0, 0, 0, 0.87);
  327. -webkit-box-shadow: none;
  328. box-shadow: none;
  329. border: 1px solid rgba(34, 36, 38, 0.15);
  330. border-radius: 0.28571429rem;
  331. -webkit-transition: width 0.1s ease, -webkit-box-shadow 0.1s ease;
  332. transition: width 0.1s ease, -webkit-box-shadow 0.1s ease;
  333. transition: box-shadow 0.1s ease, width 0.1s ease;
  334. transition: box-shadow 0.1s ease, width 0.1s ease, -webkit-box-shadow 0.1s ease;
  335. }
  336. .ui.selection.dropdown.visible,
  337. .ui.selection.dropdown.active {
  338. z-index: 10;
  339. }
  340. .ui.selection.dropdown > .search.icon,
  341. .ui.selection.dropdown > .delete.icon,
  342. .ui.selection.dropdown > .dropdown.icon {
  343. cursor: pointer;
  344. position: absolute;
  345. width: auto;
  346. height: auto;
  347. line-height: 1.21428571em;
  348. top: 0.78571429em;
  349. right: 1em;
  350. z-index: 3;
  351. margin: -0.78571429em;
  352. padding: 0.91666667em;
  353. opacity: 0.8;
  354. -webkit-transition: opacity 0.1s ease;
  355. transition: opacity 0.1s ease;
  356. }
  357. /* Compact */
  358. .ui.compact.selection.dropdown {
  359. min-width: 0;
  360. }
  361. /* Selection Menu */
  362. .ui.selection.dropdown .menu {
  363. overflow-x: hidden;
  364. overflow-y: auto;
  365. -webkit-backface-visibility: hidden;
  366. backface-visibility: hidden;
  367. -webkit-overflow-scrolling: touch;
  368. border-top-width: 0 !important;
  369. width: auto;
  370. outline: none;
  371. margin: 0 -1px;
  372. min-width: calc(100% + 2px);
  373. width: calc(100% + 2px);
  374. border-radius: 0 0 0.28571429rem 0.28571429rem;
  375. -webkit-box-shadow: 0 2px 3px 0 rgba(34, 36, 38, 0.15);
  376. box-shadow: 0 2px 3px 0 rgba(34, 36, 38, 0.15);
  377. -webkit-transition: opacity 0.1s ease;
  378. transition: opacity 0.1s ease;
  379. }
  380. .ui.selection.dropdown .menu:after,
  381. .ui.selection.dropdown .menu:before {
  382. display: none;
  383. }
  384. /*--------------
  385. Message
  386. ---------------*/
  387. .ui.selection.dropdown .menu > .message {
  388. padding: 0.78571429rem 1.14285714rem;
  389. }
  390. @media only screen and (max-width: 767.98px) {
  391. .ui.selection.dropdown[class*="very short"] .menu {
  392. max-height: 4.00714286rem;
  393. }
  394. .ui.selection.dropdown.short .menu {
  395. max-height: 6.01071429rem;
  396. }
  397. .ui.selection.dropdown .menu {
  398. max-height: 8.01428571rem;
  399. }
  400. .ui.selection.dropdown.long .menu {
  401. max-height: 16.02857143rem;
  402. }
  403. .ui.selection.dropdown[class*="very long"] .menu {
  404. max-height: 24.04285714rem;
  405. }
  406. }
  407. @media only screen and (min-width: 768px) {
  408. .ui.selection.dropdown[class*="very short"] .menu {
  409. max-height: 5.34285714rem;
  410. }
  411. .ui.selection.dropdown.short .menu {
  412. max-height: 8.01428571rem;
  413. }
  414. .ui.selection.dropdown .menu {
  415. max-height: 10.68571429rem;
  416. }
  417. .ui.selection.dropdown.long .menu {
  418. max-height: 21.37142857rem;
  419. }
  420. .ui.selection.dropdown[class*="very long"] .menu {
  421. max-height: 32.05714286rem;
  422. }
  423. }
  424. @media only screen and (min-width: 992px) {
  425. .ui.selection.dropdown[class*="very short"] .menu {
  426. max-height: 8.01428571rem;
  427. }
  428. .ui.selection.dropdown.short .menu {
  429. max-height: 12.02142857rem;
  430. }
  431. .ui.selection.dropdown .menu {
  432. max-height: 16.02857143rem;
  433. }
  434. .ui.selection.dropdown.long .menu {
  435. max-height: 32.05714286rem;
  436. }
  437. .ui.selection.dropdown[class*="very long"] .menu {
  438. max-height: 48.08571429rem;
  439. }
  440. }
  441. @media only screen and (min-width: 1920px) {
  442. .ui.selection.dropdown[class*="very short"] .menu {
  443. max-height: 10.68571429rem;
  444. }
  445. .ui.selection.dropdown.short .menu {
  446. max-height: 16.02857143rem;
  447. }
  448. .ui.selection.dropdown .menu {
  449. max-height: 21.37142857rem;
  450. }
  451. .ui.selection.dropdown.long .menu {
  452. max-height: 42.74285714rem;
  453. }
  454. .ui.selection.dropdown[class*="very long"] .menu {
  455. max-height: 64.11428571rem;
  456. }
  457. }
  458. /* Menu Item */
  459. .ui.selection.dropdown .menu > .item {
  460. border-top: 1px solid #FAFAFA;
  461. padding: 0.78571429rem 1.14285714rem !important;
  462. white-space: normal;
  463. word-wrap: normal;
  464. }
  465. /* User Item */
  466. .ui.selection.dropdown .menu > .hidden.addition.item {
  467. display: none;
  468. }
  469. /* Hover */
  470. .ui.selection.dropdown:hover {
  471. border-color: rgba(34, 36, 38, 0.35);
  472. -webkit-box-shadow: none;
  473. box-shadow: none;
  474. }
  475. /* Active */
  476. .ui.selection.active.dropdown {
  477. border-color: #96C8DA;
  478. -webkit-box-shadow: 0 2px 3px 0 rgba(34, 36, 38, 0.15);
  479. box-shadow: 0 2px 3px 0 rgba(34, 36, 38, 0.15);
  480. }
  481. .ui.selection.active.dropdown .menu {
  482. border-color: #96C8DA;
  483. -webkit-box-shadow: 0 2px 3px 0 rgba(34, 36, 38, 0.15);
  484. box-shadow: 0 2px 3px 0 rgba(34, 36, 38, 0.15);
  485. }
  486. /* Focus */
  487. .ui.selection.dropdown:focus {
  488. border-color: #96C8DA;
  489. -webkit-box-shadow: none;
  490. box-shadow: none;
  491. }
  492. .ui.selection.dropdown:focus .menu {
  493. border-color: #96C8DA;
  494. -webkit-box-shadow: 0 2px 3px 0 rgba(34, 36, 38, 0.15);
  495. box-shadow: 0 2px 3px 0 rgba(34, 36, 38, 0.15);
  496. }
  497. /* Visible */
  498. .ui.selection.visible.dropdown > .text:not(.default) {
  499. font-weight: normal;
  500. color: rgba(0, 0, 0, 0.8);
  501. }
  502. /* Visible Hover */
  503. .ui.selection.active.dropdown:hover {
  504. border-color: #96C8DA;
  505. -webkit-box-shadow: 0 2px 3px 0 rgba(34, 36, 38, 0.15);
  506. box-shadow: 0 2px 3px 0 rgba(34, 36, 38, 0.15);
  507. }
  508. .ui.selection.active.dropdown:hover .menu {
  509. border-color: #96C8DA;
  510. -webkit-box-shadow: 0 2px 3px 0 rgba(34, 36, 38, 0.15);
  511. box-shadow: 0 2px 3px 0 rgba(34, 36, 38, 0.15);
  512. }
  513. /* Dropdown Icon */
  514. .ui.active.selection.dropdown > .dropdown.icon,
  515. .ui.visible.selection.dropdown > .dropdown.icon {
  516. opacity: '';
  517. z-index: 3;
  518. }
  519. /* Connecting Border */
  520. .ui.active.selection.dropdown {
  521. border-bottom-left-radius: 0 !important;
  522. border-bottom-right-radius: 0 !important;
  523. }
  524. /* Empty Connecting Border */
  525. .ui.active.empty.selection.dropdown {
  526. border-radius: 0.28571429rem !important;
  527. -webkit-box-shadow: none !important;
  528. box-shadow: none !important;
  529. }
  530. .ui.active.empty.selection.dropdown .menu {
  531. border: none !important;
  532. -webkit-box-shadow: none !important;
  533. box-shadow: none !important;
  534. }
  535. /*--------------
  536. Searchable
  537. ---------------*/
  538. /* Search Selection */
  539. .ui.search.dropdown {
  540. min-width: '';
  541. }
  542. /* Search Dropdown */
  543. .ui.search.dropdown > input.search {
  544. background: none transparent !important;
  545. border: none !important;
  546. -webkit-box-shadow: none !important;
  547. box-shadow: none !important;
  548. cursor: text;
  549. top: 0;
  550. left: 1px;
  551. width: 100%;
  552. outline: none;
  553. -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  554. padding: inherit;
  555. }
  556. /* Text Layering */
  557. .ui.search.dropdown > input.search {
  558. position: absolute;
  559. z-index: 2;
  560. }
  561. .ui.search.dropdown > .text {
  562. cursor: text;
  563. position: relative;
  564. left: 1px;
  565. z-index: auto;
  566. }
  567. /* Search Selection */
  568. .ui.search.selection.dropdown > input.search {
  569. line-height: 1.21428571em;
  570. padding: 0.67857143em 3.2em 0.67857143em 1em;
  571. }
  572. /* Used to size multi select input to character width */
  573. .ui.search.selection.dropdown > span.sizer {
  574. line-height: 1.21428571em;
  575. padding: 0.67857143em 3.2em 0.67857143em 1em;
  576. display: none;
  577. white-space: pre;
  578. }
  579. /* Active/Visible Search */
  580. .ui.search.dropdown.active > input.search,
  581. .ui.search.dropdown.visible > input.search {
  582. cursor: auto;
  583. }
  584. .ui.search.dropdown.active > .text,
  585. .ui.search.dropdown.visible > .text {
  586. pointer-events: none;
  587. }
  588. /* Filtered Text */
  589. .ui.active.search.dropdown input.search:focus + .text .icon,
  590. .ui.active.search.dropdown input.search:focus + .text .flag {
  591. opacity: 0.45;
  592. }
  593. .ui.active.search.dropdown input.search:focus + .text {
  594. color: rgba(115, 115, 115, 0.87) !important;
  595. }
  596. /* Search Menu */
  597. .ui.search.dropdown .menu {
  598. overflow-x: hidden;
  599. overflow-y: auto;
  600. -webkit-backface-visibility: hidden;
  601. backface-visibility: hidden;
  602. -webkit-overflow-scrolling: touch;
  603. }
  604. @media only screen and (max-width: 767.98px) {
  605. .ui.search.dropdown .menu {
  606. max-height: 8.01428571rem;
  607. }
  608. }
  609. @media only screen and (min-width: 768px) {
  610. .ui.search.dropdown .menu {
  611. max-height: 10.68571429rem;
  612. }
  613. }
  614. @media only screen and (min-width: 992px) {
  615. .ui.search.dropdown .menu {
  616. max-height: 16.02857143rem;
  617. }
  618. }
  619. @media only screen and (min-width: 1920px) {
  620. .ui.search.dropdown .menu {
  621. max-height: 21.37142857rem;
  622. }
  623. }
  624. /* Clearable Selection */
  625. .ui.dropdown > .remove.icon {
  626. cursor: pointer;
  627. font-size: 0.85714286em;
  628. margin: -0.78571429em;
  629. padding: 0.91666667em;
  630. right: 3em;
  631. top: 0.78571429em;
  632. position: absolute;
  633. opacity: 0.6;
  634. z-index: 3;
  635. }
  636. .ui.clearable.dropdown .text,
  637. .ui.clearable.dropdown a:last-of-type {
  638. margin-right: 1.5em;
  639. }
  640. .ui.dropdown select.noselection ~ .remove.icon,
  641. .ui.dropdown input[value=''] ~ .remove.icon,
  642. .ui.dropdown input:not([value]) ~ .remove.icon,
  643. .ui.dropdown.loading > .remove.icon {
  644. display: none;
  645. }
  646. /*--------------
  647. Multiple
  648. ---------------*/
  649. /* Multiple Selection */
  650. .ui.multiple.dropdown {
  651. padding: 0.22619048em 3.2em 0.22619048em 0.35714286em;
  652. }
  653. .ui.multiple.dropdown .menu {
  654. cursor: auto;
  655. }
  656. /* Selection Label */
  657. .ui.multiple.dropdown > .label {
  658. display: inline-block;
  659. white-space: normal;
  660. font-size: 1em;
  661. padding: 0.35714286em 0.78571429em;
  662. margin: 0.14285714rem 0.28571429rem 0.14285714rem 0;
  663. -webkit-box-shadow: 0 0 0 1px rgba(34, 36, 38, 0.15) inset;
  664. box-shadow: 0 0 0 1px rgba(34, 36, 38, 0.15) inset;
  665. }
  666. /* Dropdown Icon */
  667. .ui.multiple.dropdown .dropdown.icon {
  668. margin: '';
  669. padding: '';
  670. }
  671. /* Text */
  672. .ui.multiple.dropdown > .text {
  673. position: static;
  674. padding: 0;
  675. max-width: 100%;
  676. margin: 0.45238095em 0 0.45238095em 0.64285714em;
  677. line-height: 1.21428571em;
  678. }
  679. .ui.multiple.dropdown > .label ~ input.search {
  680. margin-left: 0.14285714em !important;
  681. }
  682. .ui.multiple.dropdown > .label ~ .text {
  683. display: none;
  684. }
  685. .ui.multiple.dropdown > .label:not(.image) > img:not(.centered) {
  686. margin-right: 0.78571429rem;
  687. }
  688. .ui.multiple.dropdown > .label:not(.image) > img.ui:not(.avatar) {
  689. margin-bottom: 0.39285714rem;
  690. }
  691. .ui.multiple.dropdown > .image.label img {
  692. margin: -0.35714286em 0.78571429em -0.35714286em -0.78571429em;
  693. height: 1.71428571em;
  694. }
  695. /*-----------------
  696. Multiple Search
  697. -----------------*/
  698. /* Multiple Search Selection */
  699. .ui.multiple.search.dropdown,
  700. .ui.multiple.search.dropdown > input.search {
  701. cursor: text;
  702. }
  703. /* Prompt Text */
  704. .ui.multiple.search.dropdown > .text {
  705. display: inline-block;
  706. position: absolute;
  707. top: 0;
  708. left: 0;
  709. padding: inherit;
  710. margin: 0.45238095em 0 0.45238095em 0.64285714em;
  711. line-height: 1.21428571em;
  712. }
  713. .ui.multiple.search.dropdown > .label ~ .text {
  714. display: none;
  715. }
  716. /* Search */
  717. .ui.multiple.search.dropdown > input.search {
  718. position: static;
  719. padding: 0;
  720. max-width: 100%;
  721. margin: 0.45238095em 0 0.45238095em 0.64285714em;
  722. width: 2.2em;
  723. line-height: 1.21428571em;
  724. }
  725. /*--------------
  726. Inline
  727. ---------------*/
  728. .ui.inline.dropdown {
  729. cursor: pointer;
  730. display: inline-block;
  731. color: inherit;
  732. }
  733. .ui.inline.dropdown .dropdown.icon {
  734. margin: 0 0.21428571em 0 0.21428571em;
  735. vertical-align: baseline;
  736. }
  737. .ui.inline.dropdown > .text {
  738. font-weight: bold;
  739. }
  740. .ui.inline.dropdown .menu {
  741. cursor: auto;
  742. margin-top: 0.21428571em;
  743. border-radius: 0.28571429rem;
  744. }
  745. /*******************************
  746. States
  747. *******************************/
  748. /*--------------------
  749. Active
  750. ----------------------*/
  751. /* Menu Item Active */
  752. .ui.dropdown .menu .active.item {
  753. background: transparent;
  754. font-weight: bold;
  755. color: rgba(0, 0, 0, 0.95);
  756. -webkit-box-shadow: none;
  757. box-shadow: none;
  758. z-index: 12;
  759. }
  760. /*--------------------
  761. Hover
  762. ----------------------*/
  763. /* Menu Item Hover */
  764. .ui.dropdown .menu > .item:hover {
  765. background: rgba(0, 0, 0, 0.05);
  766. color: rgba(0, 0, 0, 0.95);
  767. z-index: 13;
  768. }
  769. /*--------------------
  770. Default Text
  771. ----------------------*/
  772. .ui.dropdown:not(.button) > .default.text,
  773. .ui.default.dropdown:not(.button) > .text {
  774. color: rgba(191, 191, 191, 0.87);
  775. }
  776. .ui.dropdown:not(.button) > input:focus ~ .default.text,
  777. .ui.default.dropdown:not(.button) > input:focus ~ .text {
  778. color: rgba(115, 115, 115, 0.87);
  779. }
  780. /*--------------------
  781. Loading
  782. ---------------------*/
  783. .ui.loading.dropdown > i.icon {
  784. height: 1em !important;
  785. }
  786. .ui.loading.selection.dropdown > i.icon {
  787. padding: 1.5em 1.28571429em !important;
  788. }
  789. .ui.loading.dropdown > i.icon:before {
  790. position: absolute;
  791. content: '';
  792. top: 50%;
  793. left: 50%;
  794. margin: -0.64285714em 0 0 -0.64285714em;
  795. width: 1.28571429em;
  796. height: 1.28571429em;
  797. border-radius: 500rem;
  798. border: 0.2em solid rgba(0, 0, 0, 0.1);
  799. }
  800. .ui.loading.dropdown > i.icon:after {
  801. position: absolute;
  802. content: '';
  803. top: 50%;
  804. left: 50%;
  805. -webkit-box-shadow: 0 0 0 1px transparent;
  806. box-shadow: 0 0 0 1px transparent;
  807. margin: -0.64285714em 0 0 -0.64285714em;
  808. width: 1.28571429em;
  809. height: 1.28571429em;
  810. -webkit-animation: loader 0.6s infinite linear;
  811. animation: loader 0.6s infinite linear;
  812. border: 0.2em solid #767676;
  813. border-radius: 500rem;
  814. }
  815. /* Coupling */
  816. .ui.loading.dropdown.button > i.icon:before,
  817. .ui.loading.dropdown.button > i.icon:after {
  818. display: none;
  819. }
  820. .ui.loading.dropdown > .text {
  821. -webkit-transition: none;
  822. transition: none;
  823. }
  824. /* Used To Check Position */
  825. .ui.dropdown .loading.menu {
  826. display: block;
  827. visibility: hidden;
  828. z-index: -1;
  829. }
  830. .ui.dropdown > .loading.menu {
  831. left: 0 !important;
  832. right: auto !important;
  833. }
  834. .ui.dropdown > .menu .loading.menu {
  835. left: 100% !important;
  836. right: auto !important;
  837. }
  838. /*--------------------
  839. Keyboard Select
  840. ----------------------*/
  841. /* Selected Item */
  842. .ui.dropdown.selected,
  843. .ui.dropdown .menu .selected.item {
  844. background: rgba(0, 0, 0, 0.03);
  845. color: rgba(0, 0, 0, 0.95);
  846. }
  847. /*--------------------
  848. Search Filtered
  849. ----------------------*/
  850. /* Filtered Item */
  851. .ui.dropdown > .filtered.text {
  852. visibility: hidden;
  853. }
  854. .ui.dropdown .filtered.item {
  855. display: none !important;
  856. }
  857. /*--------------------
  858. States
  859. ----------------------*/
  860. .ui.dropdown.error,
  861. .ui.dropdown.error > .text,
  862. .ui.dropdown.error > .default.text {
  863. color: #9F3A38;
  864. }
  865. .ui.selection.dropdown.error {
  866. background: #FFF6F6;
  867. border-color: #E0B4B4;
  868. }
  869. .ui.selection.dropdown.error:hover {
  870. border-color: #E0B4B4;
  871. }
  872. .ui.multiple.selection.error.dropdown > .label {
  873. border-color: #E0B4B4;
  874. }
  875. .ui.dropdown.error > .menu,
  876. .ui.dropdown.error > .menu .menu {
  877. border-color: #E0B4B4;
  878. }
  879. .ui.dropdown.error > .menu > .item {
  880. color: #9F3A38;
  881. }
  882. /* Item Hover */
  883. .ui.dropdown.error > .menu > .item:hover {
  884. background-color: #FBE7E7;
  885. }
  886. /* Item Active */
  887. .ui.dropdown.error > .menu .active.item {
  888. background-color: #FDCFCF;
  889. }
  890. .ui.dropdown.info,
  891. .ui.dropdown.info > .text,
  892. .ui.dropdown.info > .default.text {
  893. color: #276F86;
  894. }
  895. .ui.selection.dropdown.info {
  896. background: #F8FFFF;
  897. border-color: #A9D5DE;
  898. }
  899. .ui.selection.dropdown.info:hover {
  900. border-color: #A9D5DE;
  901. }
  902. .ui.multiple.selection.info.dropdown > .label {
  903. border-color: #A9D5DE;
  904. }
  905. .ui.dropdown.info > .menu,
  906. .ui.dropdown.info > .menu .menu {
  907. border-color: #A9D5DE;
  908. }
  909. .ui.dropdown.info > .menu > .item {
  910. color: #276F86;
  911. }
  912. /* Item Hover */
  913. .ui.dropdown.info > .menu > .item:hover {
  914. background-color: #e9f2fb;
  915. }
  916. /* Item Active */
  917. .ui.dropdown.info > .menu .active.item {
  918. background-color: #cef1fd;
  919. }
  920. .ui.dropdown.success,
  921. .ui.dropdown.success > .text,
  922. .ui.dropdown.success > .default.text {
  923. color: #2C662D;
  924. }
  925. .ui.selection.dropdown.success {
  926. background: #FCFFF5;
  927. border-color: #A3C293;
  928. }
  929. .ui.selection.dropdown.success:hover {
  930. border-color: #A3C293;
  931. }
  932. .ui.multiple.selection.success.dropdown > .label {
  933. border-color: #A3C293;
  934. }
  935. .ui.dropdown.success > .menu,
  936. .ui.dropdown.success > .menu .menu {
  937. border-color: #A3C293;
  938. }
  939. .ui.dropdown.success > .menu > .item {
  940. color: #2C662D;
  941. }
  942. /* Item Hover */
  943. .ui.dropdown.success > .menu > .item:hover {
  944. background-color: #e9fbe9;
  945. }
  946. /* Item Active */
  947. .ui.dropdown.success > .menu .active.item {
  948. background-color: #dafdce;
  949. }
  950. .ui.dropdown.warning,
  951. .ui.dropdown.warning > .text,
  952. .ui.dropdown.warning > .default.text {
  953. color: #573A08;
  954. }
  955. .ui.selection.dropdown.warning {
  956. background: #FFFAF3;
  957. border-color: #C9BA9B;
  958. }
  959. .ui.selection.dropdown.warning:hover {
  960. border-color: #C9BA9B;
  961. }
  962. .ui.multiple.selection.warning.dropdown > .label {
  963. border-color: #C9BA9B;
  964. }
  965. .ui.dropdown.warning > .menu,
  966. .ui.dropdown.warning > .menu .menu {
  967. border-color: #C9BA9B;
  968. }
  969. .ui.dropdown.warning > .menu > .item {
  970. color: #573A08;
  971. }
  972. /* Item Hover */
  973. .ui.dropdown.warning > .menu > .item:hover {
  974. background-color: #fbfbe9;
  975. }
  976. /* Item Active */
  977. .ui.dropdown.warning > .menu .active.item {
  978. background-color: #fdfdce;
  979. }
  980. /*--------------------
  981. Clear
  982. ----------------------*/
  983. .ui.dropdown > .clear.dropdown.icon {
  984. opacity: 0.8;
  985. -webkit-transition: opacity 0.1s ease;
  986. transition: opacity 0.1s ease;
  987. }
  988. .ui.dropdown > .clear.dropdown.icon:hover {
  989. opacity: 1;
  990. }
  991. /*--------------------
  992. Disabled
  993. ----------------------*/
  994. /* Disabled */
  995. .ui.disabled.dropdown,
  996. .ui.dropdown .menu > .disabled.item {
  997. cursor: default;
  998. pointer-events: none;
  999. opacity: 0.45;
  1000. }
  1001. /*******************************
  1002. Variations
  1003. *******************************/
  1004. /*--------------
  1005. Direction
  1006. ---------------*/
  1007. /* Flyout Direction */
  1008. .ui.dropdown .menu {
  1009. left: 0;
  1010. }
  1011. /* Default Side (Right) */
  1012. .ui.dropdown .right.menu > .menu,
  1013. .ui.dropdown .menu .right.menu {
  1014. left: 100% !important;
  1015. right: auto !important;
  1016. border-radius: 0.28571429rem !important;
  1017. }
  1018. /* Leftward Opening Menu */
  1019. .ui.dropdown > .left.menu {
  1020. left: auto !important;
  1021. right: 0 !important;
  1022. }
  1023. .ui.dropdown > .left.menu .menu,
  1024. .ui.dropdown .menu .left.menu {
  1025. left: auto;
  1026. right: 100%;
  1027. margin: 0 -0.5em 0 0 !important;
  1028. border-radius: 0.28571429rem !important;
  1029. }
  1030. .ui.dropdown .item .left.dropdown.icon,
  1031. .ui.dropdown .left.menu .item .dropdown.icon {
  1032. width: auto;
  1033. float: left;
  1034. margin: 0em 0 0 0;
  1035. }
  1036. .ui.dropdown .item .left.dropdown.icon,
  1037. .ui.dropdown .left.menu .item .dropdown.icon {
  1038. width: auto;
  1039. float: left;
  1040. margin: 0em 0 0 0;
  1041. }
  1042. .ui.dropdown .item .left.dropdown.icon + .text,
  1043. .ui.dropdown .left.menu .item .dropdown.icon + .text {
  1044. margin-left: 1em;
  1045. margin-right: 0;
  1046. }
  1047. /*--------------
  1048. Upward
  1049. ---------------*/
  1050. /* Upward Main Menu */
  1051. .ui.upward.dropdown > .menu {
  1052. top: auto;
  1053. bottom: 100%;
  1054. -webkit-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.08);
  1055. box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.08);
  1056. border-radius: 0.28571429rem 0.28571429rem 0 0;
  1057. }
  1058. /* Upward Sub Menu */
  1059. .ui.dropdown .upward.menu {
  1060. top: auto !important;
  1061. bottom: 0 !important;
  1062. }
  1063. /* Active Upward */
  1064. .ui.simple.upward.active.dropdown,
  1065. .ui.simple.upward.dropdown:hover {
  1066. border-radius: 0.28571429rem 0.28571429rem 0 0 !important;
  1067. }
  1068. .ui.upward.dropdown.button:not(.pointing):not(.floating).active {
  1069. border-radius: 0.28571429rem 0.28571429rem 0 0;
  1070. }
  1071. /* Selection */
  1072. .ui.upward.selection.dropdown .menu {
  1073. border-top-width: 1px !important;
  1074. border-bottom-width: 0 !important;
  1075. -webkit-box-shadow: 0 -2px 3px 0 rgba(0, 0, 0, 0.08);
  1076. box-shadow: 0 -2px 3px 0 rgba(0, 0, 0, 0.08);
  1077. }
  1078. .ui.upward.selection.dropdown:hover {
  1079. -webkit-box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.05);
  1080. box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.05);
  1081. }
  1082. /* Active Upward */
  1083. .ui.active.upward.selection.dropdown {
  1084. border-radius: 0 0 0.28571429rem 0.28571429rem !important;
  1085. }
  1086. /* Visible Upward */
  1087. .ui.upward.selection.dropdown.visible {
  1088. -webkit-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.08);
  1089. box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.08);
  1090. border-radius: 0 0 0.28571429rem 0.28571429rem !important;
  1091. }
  1092. /* Visible Hover Upward */
  1093. .ui.upward.active.selection.dropdown:hover {
  1094. -webkit-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.05);
  1095. box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.05);
  1096. }
  1097. .ui.upward.active.selection.dropdown:hover .menu {
  1098. -webkit-box-shadow: 0 -2px 3px 0 rgba(0, 0, 0, 0.08);
  1099. box-shadow: 0 -2px 3px 0 rgba(0, 0, 0, 0.08);
  1100. }
  1101. /*--------------
  1102. Scrolling
  1103. ---------------*/
  1104. /* Selection Menu */
  1105. .ui.scrolling.dropdown .menu,
  1106. .ui.dropdown .scrolling.menu {
  1107. overflow-x: hidden;
  1108. overflow-y: auto;
  1109. }
  1110. .ui.scrolling.dropdown .menu {
  1111. overflow-x: hidden;
  1112. overflow-y: auto;
  1113. -webkit-backface-visibility: hidden;
  1114. backface-visibility: hidden;
  1115. -webkit-overflow-scrolling: touch;
  1116. min-width: 100% !important;
  1117. width: auto !important;
  1118. }
  1119. .ui.dropdown .scrolling.menu {
  1120. position: static;
  1121. overflow-y: auto;
  1122. border: none;
  1123. -webkit-box-shadow: none !important;
  1124. box-shadow: none !important;
  1125. border-radius: 0 !important;
  1126. margin: 0 !important;
  1127. min-width: 100% !important;
  1128. width: auto !important;
  1129. border-top: 1px solid rgba(34, 36, 38, 0.15);
  1130. }
  1131. .ui.scrolling.dropdown .menu .item.item.item,
  1132. .ui.dropdown .scrolling.menu > .item.item.item {
  1133. border-top: none;
  1134. }
  1135. .ui.scrolling.dropdown .menu .item:first-child,
  1136. .ui.dropdown .scrolling.menu .item:first-child {
  1137. border-top: none;
  1138. }
  1139. .ui.dropdown > .animating.menu .scrolling.menu,
  1140. .ui.dropdown > .visible.menu .scrolling.menu {
  1141. display: block;
  1142. }
  1143. /* Scrollbar in IE */
  1144. @media all and (-ms-high-contrast: none) {
  1145. .ui.scrolling.dropdown .menu,
  1146. .ui.dropdown .scrolling.menu {
  1147. min-width: calc(100% - 17px);
  1148. }
  1149. }
  1150. @media only screen and (max-width: 767.98px) {
  1151. .ui.scrolling.dropdown .menu,
  1152. .ui.dropdown .scrolling.menu {
  1153. max-height: 10.28571429rem;
  1154. }
  1155. }
  1156. @media only screen and (min-width: 768px) {
  1157. .ui.scrolling.dropdown .menu,
  1158. .ui.dropdown .scrolling.menu {
  1159. max-height: 15.42857143rem;
  1160. }
  1161. }
  1162. @media only screen and (min-width: 992px) {
  1163. .ui.scrolling.dropdown .menu,
  1164. .ui.dropdown .scrolling.menu {
  1165. max-height: 20.57142857rem;
  1166. }
  1167. }
  1168. @media only screen and (min-width: 1920px) {
  1169. .ui.scrolling.dropdown .menu,
  1170. .ui.dropdown .scrolling.menu {
  1171. max-height: 20.57142857rem;
  1172. }
  1173. }
  1174. /*--------------
  1175. Columnar
  1176. ---------------*/
  1177. .ui.dropdown[class*="two column"] > .menu > .item {
  1178. display: inline-block;
  1179. width: 50%;
  1180. }
  1181. .ui.dropdown[class*="three column"] > .menu > .item {
  1182. display: inline-block;
  1183. width: 33%;
  1184. }
  1185. .ui.dropdown[class*="four column"] > .menu > .item {
  1186. display: inline-block;
  1187. width: 25%;
  1188. }
  1189. .ui.dropdown[class*="five column"] > .menu > .item {
  1190. display: inline-block;
  1191. width: 20%;
  1192. }
  1193. /*--------------
  1194. Simple
  1195. ---------------*/
  1196. /* Displays without javascript */
  1197. .ui.simple.dropdown .menu:before,
  1198. .ui.simple.dropdown .menu:after {
  1199. display: none;
  1200. }
  1201. .ui.simple.dropdown .menu {
  1202. position: absolute;
  1203. /* IE hack to make dropdown icons appear inline */
  1204. display: -ms-inline-flexbox !important;
  1205. display: block;
  1206. overflow: hidden;
  1207. top: -9999px;
  1208. opacity: 0;
  1209. width: 0;
  1210. height: 0;
  1211. -webkit-transition: opacity 0.1s ease;
  1212. transition: opacity 0.1s ease;
  1213. margin-top: 0 !important;
  1214. }
  1215. .ui.simple.active.dropdown,
  1216. .ui.simple.dropdown:hover {
  1217. border-bottom-left-radius: 0 !important;
  1218. border-bottom-right-radius: 0 !important;
  1219. }
  1220. .ui.simple.active.dropdown > .menu,
  1221. .ui.simple.dropdown:hover > .menu {
  1222. overflow: visible;
  1223. width: auto;
  1224. height: auto;
  1225. top: 100%;
  1226. opacity: 1;
  1227. }
  1228. .ui.simple.dropdown > .menu > .item:active > .menu,
  1229. .ui.simple.dropdown:hover > .menu > .item:hover > .menu {
  1230. overflow: visible;
  1231. width: auto;
  1232. height: auto;
  1233. top: 0 !important;
  1234. left: 100% !important;
  1235. opacity: 1;
  1236. }
  1237. .ui.simple.disabled.dropdown:hover .menu {
  1238. display: none;
  1239. height: 0;
  1240. width: 0;
  1241. overflow: hidden;
  1242. }
  1243. /* Visible */
  1244. .ui.simple.visible.dropdown > .menu {
  1245. display: block;
  1246. }
  1247. /* Scrolling */
  1248. .ui.simple.scrolling.active.dropdown > .menu,
  1249. .ui.simple.scrolling.dropdown:hover > .menu {
  1250. overflow-x: hidden;
  1251. overflow-y: auto;
  1252. }
  1253. /*--------------
  1254. Fluid
  1255. ---------------*/
  1256. .ui.fluid.dropdown {
  1257. display: block;
  1258. width: 100% !important;
  1259. min-width: 0;
  1260. }
  1261. .ui.fluid.dropdown > .dropdown.icon {
  1262. float: right;
  1263. }
  1264. /*--------------
  1265. Floating
  1266. ---------------*/
  1267. .ui.floating.dropdown .menu {
  1268. left: 0;
  1269. right: auto;
  1270. -webkit-box-shadow: 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15) !important;
  1271. box-shadow: 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15) !important;
  1272. border-radius: 0.28571429rem !important;
  1273. }
  1274. .ui.floating.dropdown > .menu {
  1275. border-radius: 0.28571429rem !important;
  1276. }
  1277. .ui:not(.upward).floating.dropdown > .menu {
  1278. margin-top: 0.5em;
  1279. }
  1280. .ui.upward.floating.dropdown > .menu {
  1281. margin-bottom: 0.5em;
  1282. }
  1283. /*--------------
  1284. Pointing
  1285. ---------------*/
  1286. .ui.pointing.dropdown > .menu {
  1287. top: 100%;
  1288. margin-top: 0.78571429rem;
  1289. border-radius: 0.28571429rem;
  1290. }
  1291. .ui.pointing.dropdown > .menu:not(.hidden):after {
  1292. display: block;
  1293. position: absolute;
  1294. pointer-events: none;
  1295. content: '';
  1296. visibility: visible;
  1297. -webkit-transform: rotate(45deg);
  1298. transform: rotate(45deg);
  1299. width: 0.5em;
  1300. height: 0.5em;
  1301. -webkit-box-shadow: -1px -1px 0 0 rgba(34, 36, 38, 0.15);
  1302. box-shadow: -1px -1px 0 0 rgba(34, 36, 38, 0.15);
  1303. background: #FFFFFF;
  1304. z-index: 2;
  1305. }
  1306. .ui.pointing.dropdown > .menu:not(.hidden):after {
  1307. top: -0.25em;
  1308. left: 50%;
  1309. margin: 0 0 0 -0.25em;
  1310. }
  1311. /* Top Left Pointing */
  1312. .ui.top.left.pointing.dropdown > .menu {
  1313. top: 100%;
  1314. bottom: auto;
  1315. left: 0;
  1316. right: auto;
  1317. margin: 1em 0 0;
  1318. }
  1319. .ui.top.left.pointing.dropdown > .menu {
  1320. top: 100%;
  1321. bottom: auto;
  1322. left: 0;
  1323. right: auto;
  1324. margin: 1em 0 0;
  1325. }
  1326. .ui.top.left.pointing.dropdown > .menu:after {
  1327. top: -0.25em;
  1328. left: 1em;
  1329. right: auto;
  1330. margin: 0;
  1331. -webkit-transform: rotate(45deg);
  1332. transform: rotate(45deg);
  1333. }
  1334. /* Top Right Pointing */
  1335. .ui.top.right.pointing.dropdown > .menu {
  1336. top: 100%;
  1337. bottom: auto;
  1338. right: 0;
  1339. left: auto;
  1340. margin: 1em 0 0;
  1341. }
  1342. .ui.top.pointing.dropdown > .left.menu:after,
  1343. .ui.top.right.pointing.dropdown > .menu:after {
  1344. top: -0.25em;
  1345. left: auto !important;
  1346. right: 1em !important;
  1347. margin: 0;
  1348. -webkit-transform: rotate(45deg);
  1349. transform: rotate(45deg);
  1350. }
  1351. /* Left Pointing */
  1352. .ui.left.pointing.dropdown > .menu {
  1353. top: 0;
  1354. left: 100%;
  1355. right: auto;
  1356. margin: 0 0 0 1em;
  1357. }
  1358. .ui.left.pointing.dropdown > .menu:after {
  1359. top: 1em;
  1360. left: -0.25em;
  1361. margin: 0 0 0 0;
  1362. -webkit-transform: rotate(-45deg);
  1363. transform: rotate(-45deg);
  1364. }
  1365. .ui.left:not(.top):not(.bottom).pointing.dropdown > .left.menu {
  1366. left: auto !important;
  1367. right: 100% !important;
  1368. margin: 0 1em 0 0;
  1369. }
  1370. .ui.left:not(.top):not(.bottom).pointing.dropdown > .left.menu:after {
  1371. top: 1em;
  1372. left: auto;
  1373. right: -0.25em;
  1374. margin: 0 0 0 0;
  1375. -webkit-transform: rotate(135deg);
  1376. transform: rotate(135deg);
  1377. }
  1378. /* Right Pointing */
  1379. .ui.right.pointing.dropdown > .menu {
  1380. top: 0;
  1381. left: auto;
  1382. right: 100%;
  1383. margin: 0 1em 0 0;
  1384. }
  1385. .ui.right.pointing.dropdown > .menu:after {
  1386. top: 1em;
  1387. left: auto;
  1388. right: -0.25em;
  1389. margin: 0 0 0 0;
  1390. -webkit-transform: rotate(135deg);
  1391. transform: rotate(135deg);
  1392. }
  1393. /* Bottom Pointing */
  1394. .ui.bottom.pointing.dropdown > .menu {
  1395. top: auto;
  1396. bottom: 100%;
  1397. left: 0;
  1398. right: auto;
  1399. margin: 0 0 1em;
  1400. }
  1401. .ui.bottom.pointing.dropdown > .menu:after {
  1402. top: auto;
  1403. bottom: -0.25em;
  1404. right: auto;
  1405. margin: 0;
  1406. -webkit-transform: rotate(-135deg);
  1407. transform: rotate(-135deg);
  1408. }
  1409. /* Reverse Sub-Menu Direction */
  1410. .ui.bottom.pointing.dropdown > .menu .menu {
  1411. top: auto !important;
  1412. bottom: 0 !important;
  1413. }
  1414. /* Bottom Left */
  1415. .ui.bottom.left.pointing.dropdown > .menu {
  1416. left: 0;
  1417. right: auto;
  1418. }
  1419. .ui.bottom.left.pointing.dropdown > .menu:after {
  1420. left: 1em;
  1421. right: auto;
  1422. }
  1423. /* Bottom Right */
  1424. .ui.bottom.right.pointing.dropdown > .menu {
  1425. right: 0;
  1426. left: auto;
  1427. }
  1428. .ui.bottom.right.pointing.dropdown > .menu:after {
  1429. left: auto;
  1430. right: 1em;
  1431. }
  1432. /* Upward pointing */
  1433. .ui.pointing.upward.dropdown .menu,
  1434. .ui.top.pointing.upward.dropdown .menu {
  1435. top: auto !important;
  1436. bottom: 100% !important;
  1437. margin: 0 0 0.78571429rem;
  1438. border-radius: 0.28571429rem;
  1439. }
  1440. .ui.pointing.upward.dropdown .menu:after,
  1441. .ui.top.pointing.upward.dropdown .menu:after {
  1442. top: 100% !important;
  1443. bottom: auto !important;
  1444. -webkit-box-shadow: 1px 1px 0 0 rgba(34, 36, 38, 0.15);
  1445. box-shadow: 1px 1px 0 0 rgba(34, 36, 38, 0.15);
  1446. margin: -0.25em 0 0;
  1447. }
  1448. /* Right Pointing Upward */
  1449. .ui.right.pointing.upward.dropdown:not(.top):not(.bottom) .menu {
  1450. top: auto !important;
  1451. bottom: 0 !important;
  1452. margin: 0 1em 0 0;
  1453. }
  1454. .ui.right.pointing.upward.dropdown:not(.top):not(.bottom) .menu:after {
  1455. top: auto !important;
  1456. bottom: 0 !important;
  1457. margin: 0 0 1em 0;
  1458. -webkit-box-shadow: -1px -1px 0 0 rgba(34, 36, 38, 0.15);
  1459. box-shadow: -1px -1px 0 0 rgba(34, 36, 38, 0.15);
  1460. }
  1461. /* Left Pointing Upward */
  1462. .ui.left.pointing.upward.dropdown:not(.top):not(.bottom) .menu {
  1463. top: auto !important;
  1464. bottom: 0 !important;
  1465. margin: 0 0 0 1em;
  1466. }
  1467. .ui.left.pointing.upward.dropdown:not(.top):not(.bottom) .menu:after {
  1468. top: auto !important;
  1469. bottom: 0 !important;
  1470. margin: 0 0 1em 0;
  1471. -webkit-box-shadow: -1px -1px 0 0 rgba(34, 36, 38, 0.15);
  1472. box-shadow: -1px -1px 0 0 rgba(34, 36, 38, 0.15);
  1473. }
  1474. /*--------------------
  1475. Sizes
  1476. ---------------------*/
  1477. .ui.dropdown,
  1478. .ui.dropdown .menu > .item {
  1479. font-size: 1rem;
  1480. }
  1481. .ui.mini.dropdown,
  1482. .ui.mini.dropdown .menu > .item {
  1483. font-size: 0.78571429rem;
  1484. }
  1485. .ui.tiny.dropdown,
  1486. .ui.tiny.dropdown .menu > .item {
  1487. font-size: 0.85714286rem;
  1488. }
  1489. .ui.small.dropdown,
  1490. .ui.small.dropdown .menu > .item {
  1491. font-size: 0.92857143rem;
  1492. }
  1493. .ui.large.dropdown,
  1494. .ui.large.dropdown .menu > .item {
  1495. font-size: 1.14285714rem;
  1496. }
  1497. .ui.big.dropdown,
  1498. .ui.big.dropdown .menu > .item {
  1499. font-size: 1.28571429rem;
  1500. }
  1501. .ui.huge.dropdown,
  1502. .ui.huge.dropdown .menu > .item {
  1503. font-size: 1.42857143rem;
  1504. }
  1505. .ui.massive.dropdown,
  1506. .ui.massive.dropdown .menu > .item {
  1507. font-size: 1.71428571rem;
  1508. }
  1509. /*--------------
  1510. Inverted
  1511. ---------------*/
  1512. /* General rules and basic dropdowns */
  1513. .ui.inverted.dropdown .menu {
  1514. background: #1B1C1D;
  1515. -webkit-box-shadow: none;
  1516. box-shadow: none;
  1517. border: 1px solid rgba(255, 255, 255, 0.15);
  1518. }
  1519. .ui.inverted.dropdown .menu > .item {
  1520. color: rgba(255, 255, 255, 0.8);
  1521. }
  1522. .ui.inverted.dropdown .menu .active.item {
  1523. background: transparent;
  1524. color: rgba(255, 255, 255, 0.8);
  1525. -webkit-box-shadow: none;
  1526. box-shadow: none;
  1527. }
  1528. .ui.inverted.dropdown .menu > .item:hover {
  1529. background: rgba(255, 255, 255, 0.08);
  1530. color: rgba(255, 255, 255, 0.8);
  1531. }
  1532. .ui.inverted.dropdown.selected,
  1533. .ui.inverted.dropdown .menu .selected.item {
  1534. background: rgba(255, 255, 255, 0.15);
  1535. color: rgba(255, 255, 255, 0.8);
  1536. }
  1537. .ui.inverted.dropdown .menu > .header {
  1538. color: #FFFFFF;
  1539. }
  1540. .ui.inverted.dropdown > .text > .description,
  1541. .ui.inverted.dropdown .menu > .item > .description {
  1542. color: rgba(255, 255, 255, 0.5);
  1543. }
  1544. .ui.inverted.dropdown .menu > .divider {
  1545. border-top: 1px solid rgba(255, 255, 255, 0.15);
  1546. }
  1547. .ui.inverted.dropdown .scrolling.menu {
  1548. border: none;
  1549. border-top: 1px solid rgba(255, 255, 255, 0.15);
  1550. }
  1551. /* Selection */
  1552. .ui.inverted.selection.dropdown {
  1553. border: 1px solid rgba(255, 255, 255, 0.15);
  1554. background: #1B1C1D;
  1555. color: rgba(255, 255, 255, 0.8);
  1556. }
  1557. .ui.inverted.selection.dropdown:hover {
  1558. border-color: rgba(255, 255, 255, 0.25);
  1559. -webkit-box-shadow: none;
  1560. box-shadow: none;
  1561. }
  1562. .ui.inverted.selection.dropdown input {
  1563. color: #FFFFFF;
  1564. }
  1565. .ui.inverted.selection.visible.dropdown > .text:not(.default) {
  1566. color: rgba(255, 255, 255, 0.9);
  1567. }
  1568. .ui.inverted.selection.active.dropdown .menu,
  1569. .ui.inverted.selection.active.dropdown:hover {
  1570. border-color: rgba(255, 255, 255, 0.15);
  1571. }
  1572. .ui.inverted.selection.dropdown .menu > .item {
  1573. border-top: 1px solid #242526;
  1574. }
  1575. .ui.inverted.dropdown:not(.button) > .default.text,
  1576. .ui.inverted.default.dropdown:not(.button) > .text {
  1577. color: rgba(255, 255, 255, 0.5);
  1578. }
  1579. .ui.inverted.dropdown:not(.button) > input:focus ~ .default.text,
  1580. .ui.inverted.default.dropdown:not(.button) > input:focus ~ .text {
  1581. color: rgba(255, 255, 255, 0.7);
  1582. }
  1583. .ui.inverted.active.search.dropdown input.search:focus + .text .icon,
  1584. .ui.inverted.active.search.dropdown input.search:focus + .text .flag {
  1585. opacity: 0.45;
  1586. }
  1587. .ui.inverted.active.search.dropdown input.search:focus + .text {
  1588. color: rgba(255, 255, 255, 0.7) !important;
  1589. }
  1590. .ui.inverted.dropdown .menu > .message:not(.ui) {
  1591. color: rgba(255, 255, 255, 0.5);
  1592. }
  1593. /* Fixing the border */
  1594. .ui.inverted.dropdown .menu > .item:first-child {
  1595. border-top-width: 0;
  1596. }
  1597. /* Labels */
  1598. .ui.inverted.multiple.dropdown > .label {
  1599. background-color: rgba(255, 255, 255, 0.7);
  1600. background-image: none;
  1601. color: #000000;
  1602. -webkit-box-shadow: 0 0 0 1px rgba(255, 255, 255, 0) inset;
  1603. box-shadow: 0 0 0 1px rgba(255, 255, 255, 0) inset;
  1604. }
  1605. .ui.inverted.multiple.dropdown > .label:hover {
  1606. background-color: rgba(255, 255, 255, 0.9);
  1607. border-color: rgba(255, 255, 255, 0.9);
  1608. background-image: none;
  1609. color: #000000;
  1610. }
  1611. .ui.inverted.multiple.dropdown > .label > .close.icon,
  1612. .ui.inverted.multiple.dropdown > .label > .delete.icon {
  1613. opacity: 0.6;
  1614. }
  1615. .ui.inverted.multiple.dropdown > .label > .close.icon:hover,
  1616. .ui.inverted.multiple.dropdown > .label > .delete.icon:hover {
  1617. opacity: 0.8;
  1618. }
  1619. /* Selection for form elements */
  1620. .ui.inverted.dropdown textarea::-webkit-selection,
  1621. .ui.inverted.dropdown input::-webkit-selection {
  1622. background-color: rgba(255, 255, 255, 0.25);
  1623. color: rgba(255, 255, 255, 0.8);
  1624. }
  1625. .ui.inverted.dropdown textarea::-moz-selection,
  1626. .ui.inverted.dropdown input::-moz-selection {
  1627. background-color: rgba(255, 255, 255, 0.25);
  1628. color: rgba(255, 255, 255, 0.8);
  1629. }
  1630. .ui.inverted.dropdown textarea::selection,
  1631. .ui.inverted.dropdown input::selection {
  1632. background-color: rgba(255, 255, 255, 0.25);
  1633. color: rgba(255, 255, 255, 0.8);
  1634. }
  1635. /* Scrollbars */
  1636. .ui.inverted.dropdown .menu::-webkit-scrollbar-track {
  1637. background: rgba(255, 255, 255, 0.1);
  1638. }
  1639. .ui.inverted.dropdown .menu::-webkit-scrollbar-thumb {
  1640. background: rgba(255, 255, 255, 0.25);
  1641. }
  1642. .ui.inverted.dropdown .menu::-webkit-scrollbar-thumb:window-inactive {
  1643. background: rgba(255, 255, 255, 0.15);
  1644. }
  1645. .ui.inverted.dropdown .menu::-webkit-scrollbar-thumb:hover {
  1646. background: rgba(255, 255, 255, 0.35);
  1647. }
  1648. .ui.inverted.pointing.dropdown > .menu:after {
  1649. background: #1B1C1D;
  1650. -webkit-box-shadow: -1px -1px 0 0 rgba(255, 255, 255, 0.15);
  1651. box-shadow: -1px -1px 0 0 rgba(255, 255, 255, 0.15);
  1652. }
  1653. /*******************************
  1654. Theme Overrides
  1655. *******************************/
  1656. /* Dropdown Carets */
  1657. @font-face {
  1658. font-family: 'Dropdown';
  1659. 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');
  1660. font-weight: normal;
  1661. font-style: normal;
  1662. }
  1663. .ui.dropdown > .dropdown.icon {
  1664. font-family: 'Dropdown';
  1665. line-height: 1;
  1666. height: 1em;
  1667. width: 1.23em;
  1668. -webkit-backface-visibility: hidden;
  1669. backface-visibility: hidden;
  1670. font-weight: normal;
  1671. font-style: normal;
  1672. text-align: center;
  1673. }
  1674. .ui.dropdown > .dropdown.icon {
  1675. width: auto;
  1676. }
  1677. .ui.dropdown > .dropdown.icon:before {
  1678. content: '\f0d7';
  1679. }
  1680. /* Sub Menu */
  1681. .ui.dropdown .menu .item .dropdown.icon:before {
  1682. content: '\f0da' /*rtl:'\f0d9'*/;
  1683. }
  1684. .ui.dropdown .item .left.dropdown.icon:before,
  1685. .ui.dropdown .left.menu .item .dropdown.icon:before {
  1686. content: "\f0d9" /*rtl:"\f0da"*/;
  1687. }
  1688. /* Vertical Menu Dropdown */
  1689. .ui.vertical.menu .dropdown.item > .dropdown.icon:before {
  1690. content: "\f0da" /*rtl:"\f0d9"*/;
  1691. }
  1692. /* Icons for Reference
  1693. .dropdown.down.icon {
  1694. content: "\f0d7";
  1695. }
  1696. .dropdown.up.icon {
  1697. content: "\f0d8";
  1698. }
  1699. .dropdown.left.icon {
  1700. content: "\f0d9";
  1701. }
  1702. .dropdown.icon.icon {
  1703. content: "\f0da";
  1704. }
  1705. */
  1706. /*******************************
  1707. User Overrides
  1708. *******************************/