label.css 25 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292
  1. /*!
  2. * # Semantic UI 2.5.0 - Label
  3. * http://github.com/semantic-org/semantic-ui/
  4. *
  5. *
  6. * Released under the MIT license
  7. * http://opensource.org/licenses/MIT
  8. *
  9. */
  10. /*******************************
  11. Label
  12. *******************************/
  13. .ui.label {
  14. display: inline-block;
  15. line-height: 1;
  16. vertical-align: baseline;
  17. margin: 0em 0.14285714em;
  18. background-color: #E8E8E8;
  19. background-image: none;
  20. padding: 0.5833em 0.833em;
  21. color: rgba(0, 0, 0, 0.6);
  22. text-transform: none;
  23. font-weight: bold;
  24. border: 0px solid transparent;
  25. border-radius: 0.28571429rem;
  26. transition: background 0.1s ease;
  27. }
  28. .ui.label:first-child {
  29. margin-left: 0em;
  30. }
  31. .ui.label:last-child {
  32. margin-right: 0em;
  33. }
  34. /* Link */
  35. a.ui.label {
  36. cursor: pointer;
  37. }
  38. /* Inside Link */
  39. .ui.label > a {
  40. cursor: pointer;
  41. color: inherit;
  42. opacity: 0.5;
  43. transition: 0.1s opacity ease;
  44. }
  45. .ui.label > a:hover {
  46. opacity: 1;
  47. }
  48. /* Image */
  49. .ui.label > img {
  50. width: auto !important;
  51. vertical-align: middle;
  52. height: 2.1666em !important;
  53. }
  54. /* Icon */
  55. .ui.label > .icon {
  56. width: auto;
  57. margin: 0em 0.75em 0em 0em;
  58. }
  59. /* Detail */
  60. .ui.label > .detail {
  61. display: inline-block;
  62. vertical-align: top;
  63. font-weight: bold;
  64. margin-left: 1em;
  65. opacity: 0.8;
  66. }
  67. .ui.label > .detail .icon {
  68. margin: 0em 0.25em 0em 0em;
  69. }
  70. /* Removable label */
  71. .ui.label > .close.icon,
  72. .ui.label > .delete.icon {
  73. cursor: pointer;
  74. margin-right: 0em;
  75. margin-left: 0.5em;
  76. font-size: 0.92857143em;
  77. opacity: 0.5;
  78. transition: background 0.1s ease;
  79. }
  80. .ui.label > .delete.icon:hover {
  81. opacity: 1;
  82. }
  83. /*-------------------
  84. Group
  85. --------------------*/
  86. .ui.labels > .label {
  87. margin: 0em 0.5em 0.5em 0em;
  88. }
  89. /*-------------------
  90. Coupling
  91. --------------------*/
  92. .ui.header > .ui.label {
  93. margin-top: -0.29165em;
  94. }
  95. /* Remove border radius on attached segment */
  96. .ui.attached.segment > .ui.top.left.attached.label,
  97. .ui.bottom.attached.segment > .ui.top.left.attached.label {
  98. border-top-left-radius: 0;
  99. }
  100. .ui.attached.segment > .ui.top.right.attached.label,
  101. .ui.bottom.attached.segment > .ui.top.right.attached.label {
  102. border-top-right-radius: 0;
  103. }
  104. .ui.top.attached.segment > .ui.bottom.left.attached.label {
  105. border-bottom-left-radius: 0;
  106. }
  107. .ui.top.attached.segment > .ui.bottom.right.attached.label {
  108. border-bottom-right-radius: 0;
  109. }
  110. /* Padding on next content after a label */
  111. .ui.top.attached.label:first-child + :not(.attached),
  112. .ui.top.attached.label + [class*="right floated"] + * {
  113. margin-top: 2rem !important;
  114. }
  115. .ui.bottom.attached.label:first-child ~ :last-child:not(.attached) {
  116. margin-top: 0em;
  117. margin-bottom: 2rem !important;
  118. }
  119. /*******************************
  120. Types
  121. *******************************/
  122. .ui.image.label {
  123. width: auto !important;
  124. margin-top: 0em;
  125. margin-bottom: 0em;
  126. max-width: 9999px;
  127. vertical-align: baseline;
  128. text-transform: none;
  129. background: #E8E8E8;
  130. padding: 0.5833em 0.833em 0.5833em 0.5em;
  131. border-radius: 0.28571429rem;
  132. box-shadow: none;
  133. }
  134. .ui.image.label img {
  135. display: inline-block;
  136. vertical-align: top;
  137. height: 2.1666em;
  138. margin: -0.5833em 0.5em -0.5833em -0.5em;
  139. border-radius: 0.28571429rem 0em 0em 0.28571429rem;
  140. }
  141. .ui.image.label .detail {
  142. background: rgba(0, 0, 0, 0.1);
  143. margin: -0.5833em -0.833em -0.5833em 0.5em;
  144. padding: 0.5833em 0.833em;
  145. border-radius: 0em 0.28571429rem 0.28571429rem 0em;
  146. }
  147. /*-------------------
  148. Tag
  149. --------------------*/
  150. .ui.tag.labels .label,
  151. .ui.tag.label {
  152. margin-left: 1em;
  153. position: relative;
  154. padding-left: 1.5em;
  155. padding-right: 1.5em;
  156. border-radius: 0em 0.28571429rem 0.28571429rem 0em;
  157. transition: none;
  158. }
  159. .ui.tag.labels .label:before,
  160. .ui.tag.label:before {
  161. position: absolute;
  162. transform: translateY(-50%) translateX(50%) rotate(-45deg);
  163. top: 50%;
  164. right: 100%;
  165. content: '';
  166. background-color: inherit;
  167. background-image: none;
  168. width: 1.56em;
  169. height: 1.56em;
  170. transition: none;
  171. }
  172. .ui.tag.labels .label:after,
  173. .ui.tag.label:after {
  174. position: absolute;
  175. content: '';
  176. top: 50%;
  177. left: -0.25em;
  178. margin-top: -0.25em;
  179. background-color: #FFFFFF !important;
  180. width: 0.5em;
  181. height: 0.5em;
  182. box-shadow: 0 -1px 1px 0 rgba(0, 0, 0, 0.3);
  183. border-radius: 500rem;
  184. }
  185. /*-------------------
  186. Corner Label
  187. --------------------*/
  188. .ui.corner.label {
  189. position: absolute;
  190. top: 0em;
  191. right: 0em;
  192. margin: 0em;
  193. padding: 0em;
  194. text-align: center;
  195. border-color: #E8E8E8;
  196. width: 4em;
  197. height: 4em;
  198. z-index: 1;
  199. transition: border-color 0.1s ease;
  200. }
  201. /* Icon Label */
  202. .ui.corner.label {
  203. background-color: transparent !important;
  204. }
  205. .ui.corner.label:after {
  206. position: absolute;
  207. content: "";
  208. right: 0em;
  209. top: 0em;
  210. z-index: -1;
  211. width: 0em;
  212. height: 0em;
  213. background-color: transparent !important;
  214. border-top: 0em solid transparent;
  215. border-right: 4em solid transparent;
  216. border-bottom: 4em solid transparent;
  217. border-left: 0em solid transparent;
  218. border-right-color: inherit;
  219. transition: border-color 0.1s ease;
  220. }
  221. .ui.corner.label .icon {
  222. cursor: default;
  223. position: relative;
  224. top: 0.64285714em;
  225. left: 0.78571429em;
  226. font-size: 1.14285714em;
  227. margin: 0em;
  228. }
  229. /* Left Corner */
  230. .ui.left.corner.label,
  231. .ui.left.corner.label:after {
  232. right: auto;
  233. left: 0em;
  234. }
  235. .ui.left.corner.label:after {
  236. border-top: 4em solid transparent;
  237. border-right: 4em solid transparent;
  238. border-bottom: 0em solid transparent;
  239. border-left: 0em solid transparent;
  240. border-top-color: inherit;
  241. }
  242. .ui.left.corner.label .icon {
  243. left: -0.78571429em;
  244. }
  245. /* Segment */
  246. .ui.segment > .ui.corner.label {
  247. top: -1px;
  248. right: -1px;
  249. }
  250. .ui.segment > .ui.left.corner.label {
  251. right: auto;
  252. left: -1px;
  253. }
  254. /*-------------------
  255. Ribbon
  256. --------------------*/
  257. .ui.ribbon.label {
  258. position: relative;
  259. margin: 0em;
  260. min-width: -webkit-max-content;
  261. min-width: -moz-max-content;
  262. min-width: max-content;
  263. border-radius: 0em 0.28571429rem 0.28571429rem 0em;
  264. border-color: rgba(0, 0, 0, 0.15);
  265. }
  266. .ui.ribbon.label:after {
  267. position: absolute;
  268. content: '';
  269. top: 100%;
  270. left: 0%;
  271. background-color: transparent !important;
  272. border-style: solid;
  273. border-width: 0em 1.2em 1.2em 0em;
  274. border-color: transparent;
  275. border-right-color: inherit;
  276. width: 0em;
  277. height: 0em;
  278. }
  279. /* Positioning */
  280. .ui.ribbon.label {
  281. left: calc(-1rem - 1.2em);
  282. margin-right: -1.2em;
  283. padding-left: calc(1rem + 1.2em);
  284. padding-right: 1.2em;
  285. }
  286. .ui[class*="right ribbon"].label {
  287. left: calc(100% + 1rem + 1.2em);
  288. padding-left: 1.2em;
  289. padding-right: calc(1rem + 1.2em);
  290. }
  291. /* Right Ribbon */
  292. .ui[class*="right ribbon"].label {
  293. text-align: left;
  294. transform: translateX(-100%);
  295. border-radius: 0.28571429rem 0em 0em 0.28571429rem;
  296. }
  297. .ui[class*="right ribbon"].label:after {
  298. left: auto;
  299. right: 0%;
  300. border-style: solid;
  301. border-width: 1.2em 1.2em 0em 0em;
  302. border-color: transparent;
  303. border-top-color: inherit;
  304. }
  305. /* Inside Table */
  306. .ui.image > .ribbon.label,
  307. .ui.card .image > .ribbon.label {
  308. position: absolute;
  309. top: 1rem;
  310. }
  311. .ui.card .image > .ui.ribbon.label,
  312. .ui.image > .ui.ribbon.label {
  313. left: calc(--0.05rem - 1.2em);
  314. }
  315. .ui.card .image > .ui[class*="right ribbon"].label,
  316. .ui.image > .ui[class*="right ribbon"].label {
  317. left: calc(100% + -0.05rem + 1.2em);
  318. padding-left: 0.833em;
  319. }
  320. /* Inside Table */
  321. .ui.table td > .ui.ribbon.label {
  322. left: calc(-0.78571429em - 1.2em);
  323. }
  324. .ui.table td > .ui[class*="right ribbon"].label {
  325. left: calc(100% + 0.78571429em + 1.2em);
  326. padding-left: 0.833em;
  327. }
  328. /*-------------------
  329. Attached
  330. --------------------*/
  331. .ui[class*="top attached"].label,
  332. .ui.attached.label {
  333. width: 100%;
  334. position: absolute;
  335. margin: 0em;
  336. top: 0em;
  337. left: 0em;
  338. padding: 0.75em 1em;
  339. border-radius: 0.21428571rem 0.21428571rem 0em 0em;
  340. }
  341. .ui[class*="bottom attached"].label {
  342. top: auto;
  343. bottom: 0em;
  344. border-radius: 0em 0em 0.21428571rem 0.21428571rem;
  345. }
  346. .ui[class*="top left attached"].label {
  347. width: auto;
  348. margin-top: 0em !important;
  349. border-radius: 0.21428571rem 0em 0.28571429rem 0em;
  350. }
  351. .ui[class*="top right attached"].label {
  352. width: auto;
  353. left: auto;
  354. right: 0em;
  355. border-radius: 0em 0.21428571rem 0em 0.28571429rem;
  356. }
  357. .ui[class*="bottom left attached"].label {
  358. width: auto;
  359. top: auto;
  360. bottom: 0em;
  361. border-radius: 0em 0.28571429rem 0em 0.21428571rem;
  362. }
  363. .ui[class*="bottom right attached"].label {
  364. top: auto;
  365. bottom: 0em;
  366. left: auto;
  367. right: 0em;
  368. width: auto;
  369. border-radius: 0.28571429rem 0em 0.21428571rem 0em;
  370. }
  371. /*******************************
  372. States
  373. *******************************/
  374. /*-------------------
  375. Disabled
  376. --------------------*/
  377. .ui.label.disabled {
  378. opacity: 0.5;
  379. }
  380. /*-------------------
  381. Hover
  382. --------------------*/
  383. a.ui.labels .label:hover,
  384. a.ui.label:hover {
  385. background-color: #E0E0E0;
  386. border-color: #E0E0E0;
  387. background-image: none;
  388. color: rgba(0, 0, 0, 0.8);
  389. }
  390. .ui.labels a.label:hover:before,
  391. a.ui.label:hover:before {
  392. color: rgba(0, 0, 0, 0.8);
  393. }
  394. /*-------------------
  395. Active
  396. --------------------*/
  397. .ui.active.label {
  398. background-color: #D0D0D0;
  399. border-color: #D0D0D0;
  400. background-image: none;
  401. color: rgba(0, 0, 0, 0.95);
  402. }
  403. .ui.active.label:before {
  404. background-color: #D0D0D0;
  405. background-image: none;
  406. color: rgba(0, 0, 0, 0.95);
  407. }
  408. /*-------------------
  409. Active Hover
  410. --------------------*/
  411. a.ui.labels .active.label:hover,
  412. a.ui.active.label:hover {
  413. background-color: #C8C8C8;
  414. border-color: #C8C8C8;
  415. background-image: none;
  416. color: rgba(0, 0, 0, 0.95);
  417. }
  418. .ui.labels a.active.label:ActiveHover:before,
  419. a.ui.active.label:ActiveHover:before {
  420. background-color: #C8C8C8;
  421. background-image: none;
  422. color: rgba(0, 0, 0, 0.95);
  423. }
  424. /*-------------------
  425. Visible
  426. --------------------*/
  427. .ui.labels.visible .label,
  428. .ui.label.visible:not(.dropdown) {
  429. display: inline-block !important;
  430. }
  431. /*-------------------
  432. Hidden
  433. --------------------*/
  434. .ui.labels.hidden .label,
  435. .ui.label.hidden {
  436. display: none !important;
  437. }
  438. /*******************************
  439. Variations
  440. *******************************/
  441. /*-------------------
  442. Colors
  443. --------------------*/
  444. /*--- Red ---*/
  445. .ui.red.labels .label,
  446. .ui.red.label {
  447. background-color: #DB2828 !important;
  448. border-color: #DB2828 !important;
  449. color: #FFFFFF !important;
  450. }
  451. /* Link */
  452. .ui.red.labels .label:hover,
  453. a.ui.red.label:hover {
  454. background-color: #d01919 !important;
  455. border-color: #d01919 !important;
  456. color: #FFFFFF !important;
  457. }
  458. /* Corner */
  459. .ui.red.corner.label,
  460. .ui.red.corner.label:hover {
  461. background-color: transparent !important;
  462. }
  463. /* Ribbon */
  464. .ui.red.ribbon.label {
  465. border-color: #b21e1e !important;
  466. }
  467. /* Basic */
  468. .ui.basic.red.label {
  469. background: none #FFFFFF !important;
  470. color: #DB2828 !important;
  471. border-color: #DB2828 !important;
  472. }
  473. .ui.basic.red.labels a.label:hover,
  474. a.ui.basic.red.label:hover {
  475. background-color: #FFFFFF !important;
  476. color: #d01919 !important;
  477. border-color: #d01919 !important;
  478. }
  479. /*--- Orange ---*/
  480. .ui.orange.labels .label,
  481. .ui.orange.label {
  482. background-color: #F2711C !important;
  483. border-color: #F2711C !important;
  484. color: #FFFFFF !important;
  485. }
  486. /* Link */
  487. .ui.orange.labels .label:hover,
  488. a.ui.orange.label:hover {
  489. background-color: #f26202 !important;
  490. border-color: #f26202 !important;
  491. color: #FFFFFF !important;
  492. }
  493. /* Corner */
  494. .ui.orange.corner.label,
  495. .ui.orange.corner.label:hover {
  496. background-color: transparent !important;
  497. }
  498. /* Ribbon */
  499. .ui.orange.ribbon.label {
  500. border-color: #cf590c !important;
  501. }
  502. /* Basic */
  503. .ui.basic.orange.label {
  504. background: none #FFFFFF !important;
  505. color: #F2711C !important;
  506. border-color: #F2711C !important;
  507. }
  508. .ui.basic.orange.labels a.label:hover,
  509. a.ui.basic.orange.label:hover {
  510. background-color: #FFFFFF !important;
  511. color: #f26202 !important;
  512. border-color: #f26202 !important;
  513. }
  514. /*--- Yellow ---*/
  515. .ui.yellow.labels .label,
  516. .ui.yellow.label {
  517. background-color: #FBBD08 !important;
  518. border-color: #FBBD08 !important;
  519. color: #FFFFFF !important;
  520. }
  521. /* Link */
  522. .ui.yellow.labels .label:hover,
  523. a.ui.yellow.label:hover {
  524. background-color: #eaae00 !important;
  525. border-color: #eaae00 !important;
  526. color: #FFFFFF !important;
  527. }
  528. /* Corner */
  529. .ui.yellow.corner.label,
  530. .ui.yellow.corner.label:hover {
  531. background-color: transparent !important;
  532. }
  533. /* Ribbon */
  534. .ui.yellow.ribbon.label {
  535. border-color: #cd9903 !important;
  536. }
  537. /* Basic */
  538. .ui.basic.yellow.label {
  539. background: none #FFFFFF !important;
  540. color: #FBBD08 !important;
  541. border-color: #FBBD08 !important;
  542. }
  543. .ui.basic.yellow.labels a.label:hover,
  544. a.ui.basic.yellow.label:hover {
  545. background-color: #FFFFFF !important;
  546. color: #eaae00 !important;
  547. border-color: #eaae00 !important;
  548. }
  549. /*--- Olive ---*/
  550. .ui.olive.labels .label,
  551. .ui.olive.label {
  552. background-color: #B5CC18 !important;
  553. border-color: #B5CC18 !important;
  554. color: #FFFFFF !important;
  555. }
  556. /* Link */
  557. .ui.olive.labels .label:hover,
  558. a.ui.olive.label:hover {
  559. background-color: #a7bd0d !important;
  560. border-color: #a7bd0d !important;
  561. color: #FFFFFF !important;
  562. }
  563. /* Corner */
  564. .ui.olive.corner.label,
  565. .ui.olive.corner.label:hover {
  566. background-color: transparent !important;
  567. }
  568. /* Ribbon */
  569. .ui.olive.ribbon.label {
  570. border-color: #198f35 !important;
  571. }
  572. /* Basic */
  573. .ui.basic.olive.label {
  574. background: none #FFFFFF !important;
  575. color: #B5CC18 !important;
  576. border-color: #B5CC18 !important;
  577. }
  578. .ui.basic.olive.labels a.label:hover,
  579. a.ui.basic.olive.label:hover {
  580. background-color: #FFFFFF !important;
  581. color: #a7bd0d !important;
  582. border-color: #a7bd0d !important;
  583. }
  584. /*--- Green ---*/
  585. .ui.green.labels .label,
  586. .ui.green.label {
  587. background-color: #21BA45 !important;
  588. border-color: #21BA45 !important;
  589. color: #FFFFFF !important;
  590. }
  591. /* Link */
  592. .ui.green.labels .label:hover,
  593. a.ui.green.label:hover {
  594. background-color: #16ab39 !important;
  595. border-color: #16ab39 !important;
  596. color: #FFFFFF !important;
  597. }
  598. /* Corner */
  599. .ui.green.corner.label,
  600. .ui.green.corner.label:hover {
  601. background-color: transparent !important;
  602. }
  603. /* Ribbon */
  604. .ui.green.ribbon.label {
  605. border-color: #198f35 !important;
  606. }
  607. /* Basic */
  608. .ui.basic.green.label {
  609. background: none #FFFFFF !important;
  610. color: #21BA45 !important;
  611. border-color: #21BA45 !important;
  612. }
  613. .ui.basic.green.labels a.label:hover,
  614. a.ui.basic.green.label:hover {
  615. background-color: #FFFFFF !important;
  616. color: #16ab39 !important;
  617. border-color: #16ab39 !important;
  618. }
  619. /*--- Teal ---*/
  620. .ui.teal.labels .label,
  621. .ui.teal.label {
  622. background-color: #00B5AD !important;
  623. border-color: #00B5AD !important;
  624. color: #FFFFFF !important;
  625. }
  626. /* Link */
  627. .ui.teal.labels .label:hover,
  628. a.ui.teal.label:hover {
  629. background-color: #009c95 !important;
  630. border-color: #009c95 !important;
  631. color: #FFFFFF !important;
  632. }
  633. /* Corner */
  634. .ui.teal.corner.label,
  635. .ui.teal.corner.label:hover {
  636. background-color: transparent !important;
  637. }
  638. /* Ribbon */
  639. .ui.teal.ribbon.label {
  640. border-color: #00827c !important;
  641. }
  642. /* Basic */
  643. .ui.basic.teal.label {
  644. background: none #FFFFFF !important;
  645. color: #00B5AD !important;
  646. border-color: #00B5AD !important;
  647. }
  648. .ui.basic.teal.labels a.label:hover,
  649. a.ui.basic.teal.label:hover {
  650. background-color: #FFFFFF !important;
  651. color: #009c95 !important;
  652. border-color: #009c95 !important;
  653. }
  654. /*--- Blue ---*/
  655. .ui.blue.labels .label,
  656. .ui.blue.label {
  657. background-color: #2185D0 !important;
  658. border-color: #2185D0 !important;
  659. color: #FFFFFF !important;
  660. }
  661. /* Link */
  662. .ui.blue.labels .label:hover,
  663. a.ui.blue.label:hover {
  664. background-color: #1678c2 !important;
  665. border-color: #1678c2 !important;
  666. color: #FFFFFF !important;
  667. }
  668. /* Corner */
  669. .ui.blue.corner.label,
  670. .ui.blue.corner.label:hover {
  671. background-color: transparent !important;
  672. }
  673. /* Ribbon */
  674. .ui.blue.ribbon.label {
  675. border-color: #1a69a4 !important;
  676. }
  677. /* Basic */
  678. .ui.basic.blue.label {
  679. background: none #FFFFFF !important;
  680. color: #2185D0 !important;
  681. border-color: #2185D0 !important;
  682. }
  683. .ui.basic.blue.labels a.label:hover,
  684. a.ui.basic.blue.label:hover {
  685. background-color: #FFFFFF !important;
  686. color: #1678c2 !important;
  687. border-color: #1678c2 !important;
  688. }
  689. /*--- Violet ---*/
  690. .ui.violet.labels .label,
  691. .ui.violet.label {
  692. background-color: #6435C9 !important;
  693. border-color: #6435C9 !important;
  694. color: #FFFFFF !important;
  695. }
  696. /* Link */
  697. .ui.violet.labels .label:hover,
  698. a.ui.violet.label:hover {
  699. background-color: #5829bb !important;
  700. border-color: #5829bb !important;
  701. color: #FFFFFF !important;
  702. }
  703. /* Corner */
  704. .ui.violet.corner.label,
  705. .ui.violet.corner.label:hover {
  706. background-color: transparent !important;
  707. }
  708. /* Ribbon */
  709. .ui.violet.ribbon.label {
  710. border-color: #502aa1 !important;
  711. }
  712. /* Basic */
  713. .ui.basic.violet.label {
  714. background: none #FFFFFF !important;
  715. color: #6435C9 !important;
  716. border-color: #6435C9 !important;
  717. }
  718. .ui.basic.violet.labels a.label:hover,
  719. a.ui.basic.violet.label:hover {
  720. background-color: #FFFFFF !important;
  721. color: #5829bb !important;
  722. border-color: #5829bb !important;
  723. }
  724. /*--- Purple ---*/
  725. .ui.purple.labels .label,
  726. .ui.purple.label {
  727. background-color: #A333C8 !important;
  728. border-color: #A333C8 !important;
  729. color: #FFFFFF !important;
  730. }
  731. /* Link */
  732. .ui.purple.labels .label:hover,
  733. a.ui.purple.label:hover {
  734. background-color: #9627ba !important;
  735. border-color: #9627ba !important;
  736. color: #FFFFFF !important;
  737. }
  738. /* Corner */
  739. .ui.purple.corner.label,
  740. .ui.purple.corner.label:hover {
  741. background-color: transparent !important;
  742. }
  743. /* Ribbon */
  744. .ui.purple.ribbon.label {
  745. border-color: #82299f !important;
  746. }
  747. /* Basic */
  748. .ui.basic.purple.label {
  749. background: none #FFFFFF !important;
  750. color: #A333C8 !important;
  751. border-color: #A333C8 !important;
  752. }
  753. .ui.basic.purple.labels a.label:hover,
  754. a.ui.basic.purple.label:hover {
  755. background-color: #FFFFFF !important;
  756. color: #9627ba !important;
  757. border-color: #9627ba !important;
  758. }
  759. /*--- Pink ---*/
  760. .ui.pink.labels .label,
  761. .ui.pink.label {
  762. background-color: #E03997 !important;
  763. border-color: #E03997 !important;
  764. color: #FFFFFF !important;
  765. }
  766. /* Link */
  767. .ui.pink.labels .label:hover,
  768. a.ui.pink.label:hover {
  769. background-color: #e61a8d !important;
  770. border-color: #e61a8d !important;
  771. color: #FFFFFF !important;
  772. }
  773. /* Corner */
  774. .ui.pink.corner.label,
  775. .ui.pink.corner.label:hover {
  776. background-color: transparent !important;
  777. }
  778. /* Ribbon */
  779. .ui.pink.ribbon.label {
  780. border-color: #c71f7e !important;
  781. }
  782. /* Basic */
  783. .ui.basic.pink.label {
  784. background: none #FFFFFF !important;
  785. color: #E03997 !important;
  786. border-color: #E03997 !important;
  787. }
  788. .ui.basic.pink.labels a.label:hover,
  789. a.ui.basic.pink.label:hover {
  790. background-color: #FFFFFF !important;
  791. color: #e61a8d !important;
  792. border-color: #e61a8d !important;
  793. }
  794. /*--- Brown ---*/
  795. .ui.brown.labels .label,
  796. .ui.brown.label {
  797. background-color: #A5673F !important;
  798. border-color: #A5673F !important;
  799. color: #FFFFFF !important;
  800. }
  801. /* Link */
  802. .ui.brown.labels .label:hover,
  803. a.ui.brown.label:hover {
  804. background-color: #975b33 !important;
  805. border-color: #975b33 !important;
  806. color: #FFFFFF !important;
  807. }
  808. /* Corner */
  809. .ui.brown.corner.label,
  810. .ui.brown.corner.label:hover {
  811. background-color: transparent !important;
  812. }
  813. /* Ribbon */
  814. .ui.brown.ribbon.label {
  815. border-color: #805031 !important;
  816. }
  817. /* Basic */
  818. .ui.basic.brown.label {
  819. background: none #FFFFFF !important;
  820. color: #A5673F !important;
  821. border-color: #A5673F !important;
  822. }
  823. .ui.basic.brown.labels a.label:hover,
  824. a.ui.basic.brown.label:hover {
  825. background-color: #FFFFFF !important;
  826. color: #975b33 !important;
  827. border-color: #975b33 !important;
  828. }
  829. /*--- Grey ---*/
  830. .ui.grey.labels .label,
  831. .ui.grey.label {
  832. background-color: #767676 !important;
  833. border-color: #767676 !important;
  834. color: #FFFFFF !important;
  835. }
  836. /* Link */
  837. .ui.grey.labels .label:hover,
  838. a.ui.grey.label:hover {
  839. background-color: #838383 !important;
  840. border-color: #838383 !important;
  841. color: #FFFFFF !important;
  842. }
  843. /* Corner */
  844. .ui.grey.corner.label,
  845. .ui.grey.corner.label:hover {
  846. background-color: transparent !important;
  847. }
  848. /* Ribbon */
  849. .ui.grey.ribbon.label {
  850. border-color: #805031 !important;
  851. }
  852. /* Basic */
  853. .ui.basic.grey.label {
  854. background: none #FFFFFF !important;
  855. color: #767676 !important;
  856. border-color: #767676 !important;
  857. }
  858. .ui.basic.grey.labels a.label:hover,
  859. a.ui.basic.grey.label:hover {
  860. background-color: #FFFFFF !important;
  861. color: #838383 !important;
  862. border-color: #838383 !important;
  863. }
  864. /*--- Black ---*/
  865. .ui.black.labels .label,
  866. .ui.black.label {
  867. background-color: #1B1C1D !important;
  868. border-color: #1B1C1D !important;
  869. color: #FFFFFF !important;
  870. }
  871. /* Link */
  872. .ui.black.labels .label:hover,
  873. a.ui.black.label:hover {
  874. background-color: #27292a !important;
  875. border-color: #27292a !important;
  876. color: #FFFFFF !important;
  877. }
  878. /* Corner */
  879. .ui.black.corner.label,
  880. .ui.black.corner.label:hover {
  881. background-color: transparent !important;
  882. }
  883. /* Ribbon */
  884. .ui.black.ribbon.label {
  885. border-color: #805031 !important;
  886. }
  887. /* Basic */
  888. .ui.basic.black.label {
  889. background: none #FFFFFF !important;
  890. color: #1B1C1D !important;
  891. border-color: #1B1C1D !important;
  892. }
  893. .ui.basic.black.labels a.label:hover,
  894. a.ui.basic.black.label:hover {
  895. background-color: #FFFFFF !important;
  896. color: #27292a !important;
  897. border-color: #27292a !important;
  898. }
  899. /*-------------------
  900. Basic
  901. --------------------*/
  902. .ui.basic.label {
  903. background: none #FFFFFF;
  904. border: 1px solid rgba(34, 36, 38, 0.15);
  905. color: rgba(0, 0, 0, 0.87);
  906. box-shadow: none;
  907. }
  908. /* Link */
  909. a.ui.basic.label:hover {
  910. text-decoration: none;
  911. background: none #FFFFFF;
  912. color: #1e70bf;
  913. box-shadow: 1px solid rgba(34, 36, 38, 0.15);
  914. box-shadow: none;
  915. }
  916. /* Pointing */
  917. .ui.basic.pointing.label:before {
  918. border-color: inherit;
  919. }
  920. /*-------------------
  921. Fluid
  922. --------------------*/
  923. .ui.label.fluid,
  924. .ui.fluid.labels > .label {
  925. width: 100%;
  926. box-sizing: border-box;
  927. }
  928. /*-------------------
  929. Inverted
  930. --------------------*/
  931. .ui.inverted.labels .label,
  932. .ui.inverted.label {
  933. color: rgba(255, 255, 255, 0.9) !important;
  934. }
  935. /*-------------------
  936. Horizontal
  937. --------------------*/
  938. .ui.horizontal.labels .label,
  939. .ui.horizontal.label {
  940. margin: 0em 0.5em 0em 0em;
  941. padding: 0.4em 0.833em;
  942. min-width: 3em;
  943. text-align: center;
  944. }
  945. /*-------------------
  946. Circular
  947. --------------------*/
  948. .ui.circular.labels .label,
  949. .ui.circular.label {
  950. min-width: 2em;
  951. min-height: 2em;
  952. padding: 0.5em !important;
  953. line-height: 1em;
  954. text-align: center;
  955. border-radius: 500rem;
  956. }
  957. .ui.empty.circular.labels .label,
  958. .ui.empty.circular.label {
  959. min-width: 0em;
  960. min-height: 0em;
  961. overflow: hidden;
  962. width: 0.5em;
  963. height: 0.5em;
  964. vertical-align: baseline;
  965. }
  966. /*-------------------
  967. Pointing
  968. --------------------*/
  969. .ui.pointing.label {
  970. position: relative;
  971. }
  972. .ui.attached.pointing.label {
  973. position: absolute;
  974. }
  975. .ui.pointing.label:before {
  976. background-color: inherit;
  977. background-image: inherit;
  978. border-width: none;
  979. border-style: solid;
  980. border-color: inherit;
  981. }
  982. /* Arrow */
  983. .ui.pointing.label:before {
  984. position: absolute;
  985. content: '';
  986. transform: rotate(45deg);
  987. background-image: none;
  988. z-index: 2;
  989. width: 0.6666em;
  990. height: 0.6666em;
  991. transition: background 0.1s ease;
  992. }
  993. /*--- Above ---*/
  994. .ui.pointing.label,
  995. .ui[class*="pointing above"].label {
  996. margin-top: 1em;
  997. }
  998. .ui.pointing.label:before,
  999. .ui[class*="pointing above"].label:before {
  1000. border-width: 1px 0px 0px 1px;
  1001. transform: translateX(-50%) translateY(-50%) rotate(45deg);
  1002. top: 0%;
  1003. left: 50%;
  1004. }
  1005. /*--- Below ---*/
  1006. .ui[class*="bottom pointing"].label,
  1007. .ui[class*="pointing below"].label {
  1008. margin-top: 0em;
  1009. margin-bottom: 1em;
  1010. }
  1011. .ui[class*="bottom pointing"].label:before,
  1012. .ui[class*="pointing below"].label:before {
  1013. border-width: 0px 1px 1px 0px;
  1014. top: auto;
  1015. right: auto;
  1016. transform: translateX(-50%) translateY(-50%) rotate(45deg);
  1017. top: 100%;
  1018. left: 50%;
  1019. }
  1020. /*--- Left ---*/
  1021. .ui[class*="left pointing"].label {
  1022. margin-top: 0em;
  1023. margin-left: 0.6666em;
  1024. }
  1025. .ui[class*="left pointing"].label:before {
  1026. border-width: 0px 0px 1px 1px;
  1027. transform: translateX(-50%) translateY(-50%) rotate(45deg);
  1028. bottom: auto;
  1029. right: auto;
  1030. top: 50%;
  1031. left: 0em;
  1032. }
  1033. /*--- Right ---*/
  1034. .ui[class*="right pointing"].label {
  1035. margin-top: 0em;
  1036. margin-right: 0.6666em;
  1037. }
  1038. .ui[class*="right pointing"].label:before {
  1039. border-width: 1px 1px 0px 0px;
  1040. transform: translateX(50%) translateY(-50%) rotate(45deg);
  1041. top: 50%;
  1042. right: 0%;
  1043. bottom: auto;
  1044. left: auto;
  1045. }
  1046. /* Basic Pointing */
  1047. /*--- Above ---*/
  1048. .ui.basic.pointing.label:before,
  1049. .ui.basic[class*="pointing above"].label:before {
  1050. margin-top: -1px;
  1051. }
  1052. /*--- Below ---*/
  1053. .ui.basic[class*="bottom pointing"].label:before,
  1054. .ui.basic[class*="pointing below"].label:before {
  1055. bottom: auto;
  1056. top: 100%;
  1057. margin-top: 1px;
  1058. }
  1059. /*--- Left ---*/
  1060. .ui.basic[class*="left pointing"].label:before {
  1061. top: 50%;
  1062. left: -1px;
  1063. }
  1064. /*--- Right ---*/
  1065. .ui.basic[class*="right pointing"].label:before {
  1066. top: 50%;
  1067. right: -1px;
  1068. }
  1069. /*------------------
  1070. Floating Label
  1071. -------------------*/
  1072. .ui.floating.label {
  1073. position: absolute;
  1074. z-index: 100;
  1075. top: -1em;
  1076. left: 100%;
  1077. margin: 0em 0em 0em -1.5em !important;
  1078. }
  1079. /*-------------------
  1080. Sizes
  1081. --------------------*/
  1082. .ui.mini.labels .label,
  1083. .ui.mini.label {
  1084. font-size: 0.64285714rem;
  1085. }
  1086. .ui.tiny.labels .label,
  1087. .ui.tiny.label {
  1088. font-size: 0.71428571rem;
  1089. }
  1090. .ui.small.labels .label,
  1091. .ui.small.label {
  1092. font-size: 0.78571429rem;
  1093. }
  1094. .ui.labels .label,
  1095. .ui.label {
  1096. font-size: 0.85714286rem;
  1097. }
  1098. .ui.large.labels .label,
  1099. .ui.large.label {
  1100. font-size: 1rem;
  1101. }
  1102. .ui.big.labels .label,
  1103. .ui.big.label {
  1104. font-size: 1.28571429rem;
  1105. }
  1106. .ui.huge.labels .label,
  1107. .ui.huge.label {
  1108. font-size: 1.42857143rem;
  1109. }
  1110. .ui.massive.labels .label,
  1111. .ui.massive.label {
  1112. font-size: 1.71428571rem;
  1113. }
  1114. /*******************************
  1115. Theme Overrides
  1116. *******************************/
  1117. /*******************************
  1118. Site Overrides
  1119. *******************************/