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

1764 lines
34 KiB

  1. /*
  2. * # Semantic Menu
  3. * http://github.com/quirkyinc/semantic
  4. *
  5. *
  6. * Copyright 2013 Contributors
  7. * Released under the MIT license
  8. * http://opensource.org/licenses/MIT
  9. *
  10. * Released: April 17 2013
  11. */
  12. /*******************************
  13. Standard
  14. *******************************/
  15. /*--------------
  16. Menu
  17. ---------------*/
  18. .ui.menu {
  19. margin: 1rem 0rem;
  20. background-color: #FFFFFF;
  21. font-size: 0px;
  22. font-weight: normal;
  23. -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
  24. -moz-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
  25. box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
  26. -webkit-border-radius: 0.1875rem;
  27. -moz-border-radius: 0.1875rem;
  28. border-radius: 0.1875rem;
  29. }
  30. .ui.menu:first-child {
  31. margin-top: 0rem;
  32. }
  33. .ui.menu:last-child {
  34. margin-bottom: 0rem;
  35. }
  36. .ui.menu:after {
  37. content: ".";
  38. display: block;
  39. height: 0;
  40. clear: both;
  41. visibility: hidden;
  42. }
  43. .ui.menu > .item:first-child {
  44. border-radius: 0.1875em 0px 0px 0.1875em;
  45. }
  46. .ui.menu > .item:last-child {
  47. border-radius: 0px 0.1875em 0.1875em 0px;
  48. }
  49. .ui.menu .item {
  50. -webkit-user-select: none;
  51. -moz-user-select: none;
  52. -ms-user-select: none;
  53. user-select: none;
  54. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  55. vertical-align: middle;
  56. line-height: 1;
  57. text-decoration: none;
  58. -webkit-box-sizing: border-box;
  59. -moz-box-sizing: border-box;
  60. -ms-box-sizing: border-box;
  61. box-sizing: border-box;
  62. -webkit-transition:
  63. opacity 0.2s ease,
  64. background 0.2s ease,
  65. box-shadow 0.2s ease
  66. ;
  67. -moz-transition:
  68. opacity 0.2s ease,
  69. background 0.2s ease,
  70. box-shadow 0.2s ease
  71. ;
  72. -o-transition:
  73. opacity 0.2s ease,
  74. background 0.2s ease,
  75. box-shadow 0.2s ease
  76. ;
  77. -ms-transition:
  78. opacity 0.2s ease,
  79. background 0.2s ease,
  80. box-shadow 0.2s ease
  81. ;
  82. transition:
  83. opacity 0.2s ease,
  84. background 0.2s ease,
  85. box-shadow 0.2s ease
  86. ;
  87. }
  88. /*--------------
  89. Colors
  90. ---------------*/
  91. /* Text Color */
  92. .ui.menu .item,
  93. .ui.menu .item > a {
  94. color: rgba(0, 0, 0, 0.75);
  95. }
  96. .ui.menu .item .item,
  97. .ui.menu .item .item > a {
  98. color: rgba(30, 30, 30, 0.7);
  99. }
  100. .ui.menu .item .item .item,
  101. .ui.menu .item .item .item > a {
  102. color: rgba(30, 30, 30, 0.6);
  103. }
  104. .ui.menu .dropdown.item .menu .item,
  105. .ui.menu .dropdown.item .menu .item a {
  106. color: rgba(0, 0, 0, 0.75);
  107. }
  108. /* Hover */
  109. .ui.menu .item .menu a.item:hover,
  110. .ui.menu .item .menu a.item.hover,
  111. .ui.menu .item .menu .link.item:hover,
  112. .ui.menu .item .menu .link.item.hover {
  113. color: rgba(0, 0, 0, 0.85);
  114. }
  115. .ui.menu .dropdown.item .menu .item a:hover {
  116. color: rgba(0, 0, 0, 0.85);
  117. }
  118. /* Active */
  119. .ui.menu .active.item,
  120. .ui.menu .active.item a {
  121. color: rgba(0, 0, 0, 0.85);
  122. -moz-border-radius: 0px;
  123. -webkit-border-radius: 0px;
  124. border-radius: 0px;
  125. }
  126. /*--------------
  127. Items
  128. ---------------*/
  129. .ui.menu .item {
  130. position: relative;
  131. display: inline-block;
  132. padding: 0.83em 0.95em;
  133. border-top: 0em solid rgba(0, 0, 0, 0);
  134. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  135. -moz-user-select: -moz-none;
  136. -khtml-user-select: none;
  137. user-select: none;
  138. }
  139. .ui.menu .menu {
  140. margin: 0em;
  141. }
  142. .ui.menu .item.left,
  143. .ui.menu .menu.left {
  144. float: left;
  145. }
  146. .ui.menu .item.right,
  147. .ui.menu .menu.right {
  148. float: right;
  149. }
  150. /*--------------
  151. Borders
  152. ---------------*/
  153. .ui.menu .item:before {
  154. position: absolute;
  155. content: '';
  156. top: 0%;
  157. right: 0px;
  158. width: 1px;
  159. height: 100%;
  160. background-image: -webkit-linear-gradient(top,
  161. rgba(0, 0, 0, 0.05) 0%,
  162. rgba(0, 0, 0, 0.1) 50%,
  163. rgba(0, 0, 0, 0.05) 100%)
  164. ;
  165. background-image: -moz-linear-gradient(top,
  166. rgba(0, 0, 0, 0.05) 0%,
  167. rgba(0, 0, 0, 0.1) 50%,
  168. rgba(0, 0, 0, 0.05) 100%)
  169. ;
  170. background-image: -o-linear-gradient(top,
  171. rgba(0, 0, 0, 0.05) 0%,
  172. rgba(0, 0, 0, 0.1) 50%,
  173. rgba(0, 0, 0, 0.05) 100%)
  174. ;
  175. background-image: -ms-linear-gradient(top,
  176. rgba(0, 0, 0, 0.05) 0%,
  177. rgba(0, 0, 0, 0.1) 50%,
  178. rgba(0, 0, 0, 0.05) 100%)
  179. ;
  180. background-image: linear-gradient(top,
  181. rgba(0, 0, 0, 0.05) 0%,
  182. rgba(0, 0, 0, 0.1) 50%,
  183. rgba(0, 0, 0, 0.05) 100%)
  184. ;
  185. }
  186. .ui.menu .menu.right .item:before,
  187. .ui.menu .item.right:before {
  188. right: auto;
  189. left: 0px;
  190. }
  191. /*--------------
  192. Text Content
  193. ---------------*/
  194. .ui.menu .text.item > *,
  195. .ui.menu .item > p:only-child {
  196. -webkit-user-select: text;
  197. -moz-user-select: text;
  198. -ms-user-select: text;
  199. user-select: text;
  200. line-height: 1.3;
  201. color: rgba(0, 0, 0, 0.6);
  202. }
  203. .ui.menu .item > p:first-child {
  204. margin-top: 0px;
  205. }
  206. .ui.menu .item > p:last-child {
  207. margin-bottom: 0px;
  208. }
  209. /*--------------
  210. Inputs
  211. ---------------*/
  212. .ui.menu .item > .input,
  213. .ui.menu .item > .input input {
  214. width: 100%;
  215. }
  216. .ui.menu .input .icon {
  217. padding-top: 0em;
  218. top: -0.05em;
  219. height: auto;
  220. }
  221. .ui.menu .item > .input input,
  222. .ui.menu .item > input {
  223. position: relative;
  224. top: -0.6em;
  225. margin: 0em;
  226. padding-top: 0.45em;
  227. padding-bottom: 0.45em;
  228. }
  229. .ui.vertical.menu .item > .input input,
  230. .ui.vertical.menu .item > input {
  231. top: 0em;
  232. margin: 0em;
  233. padding-top: 0.63em;
  234. padding-bottom: 0.63em;
  235. }
  236. .ui.vertical.menu .item > .input .icon {
  237. top: 0px;
  238. padding-top: 0.63em;
  239. }
  240. /*--------------
  241. Header
  242. ---------------*/
  243. .ui.menu .header.item {
  244. background-color: rgba(0, 0, 0, 0.04);
  245. margin: 0em;
  246. }
  247. .ui.vertical.menu .header.item {
  248. font-weight: bold;
  249. }
  250. /*--------------
  251. Dropdowns
  252. ---------------*/
  253. /*.ui.menu .dropdown.item .menu {
  254. margin: 1px 0px 0px 0px;
  255. }*/
  256. .ui.menu .simple.dropdown.item .menu {
  257. margin: 0px !important;
  258. }
  259. .ui.menu .dropdown.item .menu .item {
  260. width: 100%;
  261. color: rgba(0, 0, 0, 0.75);
  262. }
  263. .ui.menu .dropdown.item .menu .active.item {
  264. box-shadow: none !important;
  265. }
  266. .ui.menu .ui.dropdown .menu .item:before {
  267. display: none;
  268. }
  269. /*--------------
  270. Labels
  271. ---------------*/
  272. .ui.menu .item > .label {
  273. background-color: rgba(0, 0, 0, 0.35);
  274. color: #FFFFFF;
  275. margin: -0.15em 0em -0.15em 0.5em;
  276. padding: 0.3em 0.8em;
  277. vertical-align: baseline;
  278. }
  279. .ui.menu .item > .floating.label {
  280. padding: 0.3em 0.8em;
  281. }
  282. /*--------------
  283. Images
  284. ---------------*/
  285. .ui.menu .item > img:only-child {
  286. display: block;
  287. max-width: 100%;
  288. margin: 0em auto;
  289. }
  290. /*******************************
  291. States
  292. *******************************/
  293. /*--------------
  294. Hover
  295. ---------------*/
  296. .ui.link.menu .item:hover,
  297. .ui.menu .item.hover,
  298. .ui.menu .link.item:hover,
  299. .ui.menu a.item:hover,
  300. .ui.menu .ui.dropdown .menu .item.hover,
  301. .ui.menu .ui.dropdown .menu .item:hover {
  302. cursor: pointer;
  303. background-color: rgba(0, 0, 0, 0.02);
  304. }
  305. .ui.menu .ui.dropdown.active {
  306. background-color: rgba(0, 0, 0, 0.02);
  307. -webkit-box-shadow: none;
  308. box-shadow: none;
  309. -webkit-border-bottom-right-radius: 0em;
  310. -moz-border-bottom-right-radius: 0em;
  311. border-bottom-right-radius: 0em;
  312. -webkit-border-bottom-left-radius: 0em;
  313. -moz-border-bottom-left-radius: 0em;
  314. border-bottom-left-radius: 0em;
  315. }
  316. /*--------------
  317. Down
  318. ---------------*/
  319. .ui.link.menu .item:active,
  320. .ui.menu .item.down,
  321. .ui.menu .link.item:active,
  322. .ui.menu a.item:active,
  323. .ui.menu .ui.dropdown .menu .item.down,
  324. .ui.menu .ui.dropdown .menu .item:active {
  325. background-color: rgba(0, 0, 0, 0.05);
  326. }
  327. /*--------------
  328. Active
  329. ---------------*/
  330. .ui.menu .active.item {
  331. background-color: rgba(0, 0, 0, 0.01);
  332. color: rgba(0, 0, 0, 0.95);
  333. -webkit-box-shadow: 0em 0.2em 0em inset;
  334. -moz-box-shadow: 0em 0.2em 0em inset;
  335. box-shadow: 0em 0.2em 0em inset;
  336. }
  337. .ui.vertical.menu .active.item {
  338. -webkit-border-radius: 0em;
  339. -moz-border-radius: 0em;
  340. border-radius: 0em;
  341. -moz-box-shadow: 0.2em 0em 0em inset;
  342. -webkit-box-shadow: 0.2em 0em 0em inset;
  343. box-shadow: 0.2em 0em 0em inset;
  344. }
  345. .ui.vertical.menu > .active.item:first-child {
  346. -webkit-border-radius: 0em 0.1875em 0em 0em;
  347. -moz-border-radius: 0em 0.1875em 0em 0em;
  348. border-radius: 0em 0.1875em 0em 0em;
  349. }
  350. .ui.vertical.menu > .active.item:last-child {
  351. -webkit-border-radius: 0em 0em 0.1875em 0em;
  352. -moz-border-radius: 0em 0em 0.1875em 0em;
  353. border-radius: 0em 0em 0.1875em 0em;
  354. }
  355. .ui.vertical.menu > .active.item:only-child {
  356. -webkit-border-radius: 0em 0.1875em 0.1875em 0em;
  357. -moz-border-radius: 0em 0.1875em 0.1875em 0em;
  358. border-radius: 0em 0.1875em 0.1875em 0em;
  359. }
  360. .ui.vertical.menu .active.item .menu .active.item {
  361. border-left: none;
  362. }
  363. .ui.vertical.menu .active.item .menu .active.item {
  364. padding-left: 1.5rem;
  365. }
  366. .ui.vertical.menu .item .menu .active.item {
  367. background-color: rgba(0, 0, 0, 0.03);
  368. -webkit-box-shadow: none;
  369. -moz-box-shadow: none;
  370. box-shadow: none;
  371. }
  372. /*--------------
  373. Disabled
  374. ---------------*/
  375. .ui.menu .item.disabled,
  376. .ui.menu .item.disabled:hover,
  377. .ui.menu .item.disabled.hover {
  378. cursor: default;
  379. color: rgba(0, 0, 0, 0.2);
  380. background-color: transparent !important;
  381. }
  382. /*--------------------
  383. Loading
  384. ---------------------*/
  385. /* On Form */
  386. .ui.menu.loading {
  387. position: relative;
  388. }
  389. .ui.menu.loading:after {
  390. position: absolute;
  391. top: 0%;
  392. left: 0%;
  393. content: '';
  394. width: 100%;
  395. height: 100%;
  396. background: rgba(255, 255, 255, 0.8) url(../images/loader-large.gif) no-repeat 50% 50%;
  397. visibility: visible;
  398. }
  399. /*******************************
  400. Types
  401. *******************************/
  402. /*--------------
  403. Vertical
  404. ---------------*/
  405. .ui.vertical.menu .item {
  406. display: block;
  407. height: auto !important;
  408. border-top: none;
  409. border-left: 0em solid rgba(0, 0, 0, 0);
  410. border-right: none;
  411. }
  412. .ui.vertical.menu > .item:first-child {
  413. border-radius: 0.1875em 0.1875em 0px 0px;
  414. }
  415. .ui.vertical.menu > .item:last-child {
  416. border-radius: 0px 0px 0.1875em 0.1875em;
  417. }
  418. .ui.vertical.menu .item > .label {
  419. float: right;
  420. min-width: 2.5;
  421. text-align: center;
  422. }
  423. .ui.vertical.menu .item > .icon:not(.input) {
  424. float: right;
  425. width: 1.22em;
  426. margin: 0em 0em 0em 0.5em;
  427. }
  428. .ui.vertical.menu .item > .label + .icon {
  429. float: none;
  430. margin: 0em 0.25em 0em 0em;
  431. }
  432. /*--- Border ---*/
  433. .ui.vertical.menu .item:before {
  434. position: absolute;
  435. content: '';
  436. top: 0%;
  437. left: 0px;
  438. width: 100%;
  439. height: 1px;
  440. background-image: -webkit-linear-gradient(left,
  441. rgba(0, 0, 0, 0.03) 0%,
  442. rgba(0, 0, 0, 0.1) 1.5em,
  443. rgba(0, 0, 0, 0.03) 100%)
  444. ;
  445. background-image: -moz-linear-gradient(left,
  446. rgba(0, 0, 0, 0.03) 0%,
  447. rgba(0, 0, 0, 0.1) 1.5em,
  448. rgba(0, 0, 0, 0.03) 100%)
  449. ;
  450. background-image: -o-linear-gradient(left,
  451. rgba(0, 0, 0, 0.03) 0%,
  452. rgba(0, 0, 0, 0.1) 1.5em,
  453. rgba(0, 0, 0, 0.03) 100%)
  454. ;
  455. background-image: -ms-linear-gradient(left,
  456. rgba(0, 0, 0, 0.03) 0%,
  457. rgba(0, 0, 0, 0.1) 1.5em,
  458. rgba(0, 0, 0, 0.03) 100%)
  459. ;
  460. background-image: linear-gradient(left,
  461. rgba(0, 0, 0, 0.03) 0%,
  462. rgba(0, 0, 0, 0.1) 1.5em,
  463. rgba(0, 0, 0, 0.03) 100%)
  464. ;
  465. }
  466. .ui.vertical.menu .item:first-child:before {
  467. background-image: none !important;
  468. }
  469. /*--- Dropdown ---*/
  470. .ui.vertical.menu .dropdown.item > i {
  471. float: right;
  472. }
  473. .ui.vertical.menu .dropdown.item .menu {
  474. top: 0% !important;
  475. left: 100%;
  476. margin: 0px 0px 0px 1px;
  477. }
  478. .ui.vertical.menu .dropdown.item .menu .item {
  479. font-size: 0.875rem;
  480. padding: 0.83em 1em;
  481. }
  482. .ui.vertical.menu .dropdown.item .menu .item .icon {
  483. margin-right: 0em;
  484. }
  485. .ui.vertical.menu .dropdown.item.active {
  486. -webkit-box-shadow: none;
  487. -moz-box-shadow: none;
  488. box-shadow: none;
  489. }
  490. /*--- Sub Menu ---*/
  491. .ui.vertical.menu .item > .menu {
  492. margin: 0.5em -0.95em 0em;
  493. }
  494. .ui.vertical.menu .item > .menu > .item {
  495. padding: 0.5rem 1.5rem;
  496. font-size: 0.875em;
  497. }
  498. .ui.vertical.menu .item > .menu > .item:before {
  499. display: none;
  500. }
  501. /*--------------
  502. Tiered
  503. ---------------*/
  504. .ui.tiered.menu > .sub.menu > .item {
  505. color: rgba(0, 0, 0, 0.4);
  506. }
  507. .ui.tiered.menu > .menu > .item:hover,
  508. .ui.tiered.menu > .menu > .item.hover {
  509. color: rgba(0, 0, 0, 0.8);
  510. }
  511. .ui.tiered.menu .item.active {
  512. color: rgba(0, 0, 0, 0.8);
  513. }
  514. .ui.tiered.menu > .menu .item.active:after {
  515. position: absolute;
  516. content: '';
  517. top: 100%;
  518. left: 0px;
  519. width: 100%;
  520. height: 1px;
  521. background-color: #FBFBFB;
  522. }
  523. .ui.tiered.menu .sub.menu {
  524. background-color: rgba(0, 0, 0, 0.01);
  525. border-radius: 0em;
  526. border-top: 1px solid rgba(0, 0, 0, 0.1);
  527. -webkit-box-shadow: none;
  528. -moz-box-shadow: none;
  529. box-shadow: none;
  530. color: #FFFFFF;
  531. }
  532. .ui.tiered.menu .sub.menu .item {
  533. font-size: 0.875rem;
  534. }
  535. .ui.tiered.menu .sub.menu .item:before {
  536. background-image: none;
  537. }
  538. .ui.tiered.menu .sub.menu .active.item {
  539. padding-top: 0.83em;
  540. background-color: transparent;
  541. border-radius: 0 0 0 0;
  542. border-top: medium none;
  543. -webkit-box-shadow: none;
  544. -moz-box-shadow: none;
  545. box-shadow: none;
  546. color: rgba(0, 0, 0, 0.7) !important;
  547. }
  548. .ui.tiered.menu .sub.menu .active.item:after {
  549. display: none;
  550. }
  551. /* Inverted */
  552. .ui.inverted.tiered.menu > .menu > .item {
  553. color: rgba(255, 255, 255, 0.5);
  554. }
  555. .ui.inverted.tiered.menu .sub.menu {
  556. background-color: rgba(0, 0, 0, 0.2);
  557. }
  558. .ui.inverted.tiered.menu .sub.menu .item {
  559. color: rgba(255, 255, 255, 0.6);
  560. }
  561. .ui.inverted.tiered.menu > .menu > .item:hover,
  562. .ui.inverted.tiered.menu > .menu > .item.hover {
  563. color: rgba(255, 255, 255, 0.9);
  564. }
  565. .ui.inverted.tiered.menu .active.item:after {
  566. display: none;
  567. }
  568. .ui.inverted.tiered.menu > .sub.menu > .active.item,
  569. .ui.inverted.tiered.menu > .menu > .active.item {
  570. color: rgba(255, 255, 255, 1) !important;
  571. -webkit-box-shadow: none;
  572. -moz-box-shadow: none;
  573. box-shadow: none;
  574. }
  575. /* Tiered pointing */
  576. .ui.pointing.tiered.menu > .menu > .item:after {
  577. display: none;
  578. }
  579. .ui.pointing.tiered.menu > .sub.menu > .item:after {
  580. display: block;
  581. }
  582. /*--------------
  583. Tabular
  584. ---------------*/
  585. .ui.tabular.menu {
  586. background-color: transparent;
  587. border-bottom: 1px solid #DCDDDE;
  588. -webkit-box-shadow: none;
  589. -moz-box-shadow: none;
  590. box-shadow: none;
  591. }
  592. .ui.tabular.menu .item {
  593. background-color: transparent;
  594. border-left: 1px solid transparent;
  595. border-right: 1px solid transparent;
  596. border-top: 1px solid transparent;
  597. padding-left: 1.4em;
  598. padding-right: 1.4em;
  599. color: rgba(0, 0, 0, 0.6);
  600. }
  601. .ui.tabular.menu .item:before {
  602. display: none;
  603. }
  604. /* Hover */
  605. .ui.tabular.menu .item:hover {
  606. background-color: transparent;
  607. color: rgba(0, 0, 0, 0.8);
  608. }
  609. /* Active */
  610. .ui.tabular.menu .active.item {
  611. position: relative;
  612. top: 1px;
  613. background-color: #FFFFFF;
  614. color: rgba(0, 0, 0, 0.8);
  615. border-color: #DCDDDE;
  616. padding-top: 0.83em;
  617. -webkit-box-shadow: none;
  618. -moz-box-shadow: none;
  619. box-shadow: none;
  620. -webkit-border-radius: 5px 5px 0 0;
  621. -moz-border-radius: 5px 5px 0 0;
  622. border-radius: 5px 5px 0 0;
  623. }
  624. /*--------------
  625. Pagination
  626. ---------------*/
  627. .ui.pagination.menu {
  628. margin: 0em;
  629. display: inline-block;
  630. }
  631. .ui.pagination.menu .item {
  632. min-width: 2.7em;
  633. min-height: 2.66em;
  634. text-align: center;
  635. }
  636. .ui.pagination.menu.floated {
  637. display: block;
  638. }
  639. /* active */
  640. .ui.pagination.menu .active.item {
  641. border-top: none;
  642. padding-top: 0.83em;
  643. background-color: transparent;
  644. -webkit-box-shadow: none;
  645. -moz-box-shadow: none;
  646. box-shadow: none;
  647. }
  648. /*--------------
  649. Secondary
  650. ---------------*/
  651. .ui.secondary.menu {
  652. background-color: transparent;
  653. -webkit-border-radius: 0px;
  654. -moz-border-radius: 0px;
  655. border-radius: 0px;
  656. -webkit-box-shadow: none;
  657. -moz-box-shadow: none;
  658. box-shadow: none;
  659. }
  660. .ui.secondary.menu > .item {
  661. -webkit-box-shadow: none;
  662. -moz-box-shadow: none;
  663. box-shadow: none;
  664. border: none;
  665. height: auto !important;
  666. margin: 0em 0.25em;
  667. padding: 0.5em 1em;
  668. -webkit-border-radius: 0.3125em;
  669. -moz-border-radius: 0.3125em;
  670. border-radius: 0.3125em;
  671. }
  672. .ui.secondary.menu > .item:before {
  673. display: none !important;
  674. }
  675. .ui.secondary.menu .link.item,
  676. .ui.secondary.menu a.item {
  677. opacity: 0.8;
  678. -webkit-transition: none;
  679. -moz-transition: none;
  680. -o-transition: none;
  681. -ms-transition: none;
  682. transition: none;
  683. }
  684. .ui.secondary.menu .header.item {
  685. border-right: 0.1em solid rgba(0, 0, 0, 0.1);
  686. background-color: transparent;
  687. -webkit-border-radius: 0em;
  688. -moz-border-radius: 0em;
  689. border-radius: 0em;
  690. }
  691. /* hover */
  692. .ui.secondary.menu .link.item:hover,
  693. .ui.secondary.menu a.item:hover {
  694. opacity: 1;
  695. }
  696. /* active */
  697. .ui.secondary.menu > .active.item {
  698. background-color: rgba(0, 0, 0, 0.08);
  699. opacity: 1;
  700. -webkit-box-shadow: none;
  701. -moz-box-shadow: none;
  702. box-shadow: none;
  703. }
  704. .ui.secondary.vertical.menu > .active.item {
  705. -webkit-border-radius: 0.3125em;
  706. -moz-border-radius: 0.3125em;
  707. border-radius: 0.3125em;
  708. }
  709. /* inverted */
  710. .ui.secondary.inverted.menu .link.item,
  711. .ui.secondary.inverted.menu a.item {
  712. color: rgba(255, 255, 255, 0.5);
  713. }
  714. .ui.secondary.inverted.menu .link.item:hover,
  715. .ui.secondary.inverted.menu a.item:hover {
  716. color: rgba(255, 255, 255, 0.9);
  717. }
  718. .ui.secondary.inverted.menu > .active.item {
  719. background-color: rgba(255, 255, 255, 0.9);
  720. }
  721. /* disable variations */
  722. .ui.secondary.item.menu > .item {
  723. margin: 0em;
  724. }
  725. .ui.secondary.attached.menu {
  726. -webkit-box-shadow: none;
  727. -moz-box-shadow: none;
  728. box-shadow: none;
  729. }
  730. /*---------------------
  731. Secondary Pointing
  732. -----------------------*/
  733. .ui.secondary.pointing.menu {
  734. border-bottom: 3px solid rgba(0, 0, 0, 0.1);
  735. }
  736. .ui.secondary.pointing.menu .header.item {
  737. border-right-width: 0px;
  738. font-weight: bold;
  739. }
  740. .ui.secondary.pointing.menu .text.item {
  741. box-shadow: none !important;
  742. }
  743. .ui.secondary.pointing.menu > .item {
  744. margin: 0em 0em -3px;
  745. padding: 0.6em 0.95em;
  746. border-bottom: 3px solid rgba(0, 0, 0, 0);
  747. -webkit-border-radius: 0em;
  748. -moz-border-radius: 0em;
  749. border-radius: 0em;
  750. -webkit-transition:
  751. color 0.2s
  752. ;
  753. -moz-transition:
  754. color 0.2s
  755. ;
  756. -o-transition:
  757. color 0.2s
  758. ;
  759. -ms-transition:
  760. color 0.2s
  761. ;
  762. transition:
  763. color 0.2s
  764. ;
  765. }
  766. .ui.secondary.pointing.menu > .item:after {
  767. display: none;
  768. }
  769. /* Hover */
  770. .ui.secondary.pointing.menu > .item.hover,
  771. .ui.secondary.pointing.menu > .item:hover {
  772. background-color: transparent;
  773. color: rgba(0, 0, 0, 0.7);
  774. }
  775. /* Down */
  776. .ui.secondary.pointing.menu > .item:active,
  777. .ui.secondary.pointing.menu > .item.down {
  778. background-color: transparent;
  779. border-color: rgba(0, 0, 0, 0.2);
  780. }
  781. /* Active */
  782. .ui.secondary.pointing.menu > .item.active {
  783. background-color: transparent;
  784. border-color: rgba(0, 0, 0, 0.4);
  785. -webkit-box-shadow: none;
  786. -moz-box-shadow: none;
  787. box-shadow: none;
  788. }
  789. /*---------------------
  790. Secondary Vertical
  791. -----------------------*/
  792. .ui.secondary.vertical.pointing.menu {
  793. border: none;
  794. border-right: 3px solid rgba(0, 0, 0, 0.1);
  795. }
  796. .ui.secondary.vertical.menu > .item {
  797. border: none;
  798. margin: 0em 0em 0.3em;
  799. padding: 0.6em 0.8em;
  800. -webkit-border-radius: 0.1875em;
  801. -moz-border-radius: 0.1875em;
  802. border-radius: 0.1875em;
  803. }
  804. .ui.secondary.vertical.menu > .header.item {
  805. -webkit-border-radius: 0em;
  806. -moz-border-radius: 0em;
  807. border-radius: 0em;
  808. }
  809. .ui.secondary.vertical.pointing.menu > .item {
  810. margin: 0em -3px 0em 0em;
  811. border-bottom: none;
  812. border-right: 3px solid transparent;
  813. -webkit-border-radius: 0em;
  814. -moz-border-radius: 0em;
  815. border-radius: 0em;
  816. }
  817. /* Hover */
  818. .ui.secondary.vertical.pointing.menu > .item.hover,
  819. .ui.secondary.vertical.pointing.menu > .item:hover {
  820. background-color: transparent;
  821. color: rgba(0, 0, 0, 0.7);
  822. }
  823. /* Down */
  824. .ui.secondary.vertical.pointing.menu > .item:active,
  825. .ui.secondary.vertical.pointing.menu > .item.down {
  826. background-color: transparent;
  827. border-color: rgba(0, 0, 0, 0.2);
  828. }
  829. /* Active */
  830. .ui.secondary.vertical.pointing.menu > .item.active {
  831. background-color: transparent;
  832. border-color: rgba(0, 0, 0, 0.4);
  833. color: rgba(0, 0, 0, 0.85);
  834. }
  835. /*--------------
  836. Inverted
  837. ---------------*/
  838. .ui.secondary.inverted.menu {
  839. background-color: transparent;
  840. }
  841. .ui.secondary.inverted.pointing.menu {
  842. border-bottom: 3px solid rgba(255, 255, 255, 0.1);
  843. }
  844. .ui.secondary.inverted.pointing.menu > .item {
  845. color: rgba(255, 255, 255, 0.7);
  846. }
  847. /* Hover */
  848. .ui.secondary.inverted.pointing.menu > .item.hover,
  849. .ui.secondary.inverted.pointing.menu > .item:hover {
  850. color: rgba(255, 255, 255, 0.85);
  851. }
  852. /* Down */
  853. .ui.secondary.inverted.pointing.menu > .item:active,
  854. .ui.secondary.inverted.pointing.menu > .item.down {
  855. border-color: rgba(255, 255, 255, 0.4) !important;
  856. }
  857. /* Active */
  858. .ui.secondary.inverted.pointing.menu > .item.active {
  859. border-color: rgba(255, 255, 255, 0.8) !important;
  860. color: rgba(255, 255, 255, 1);
  861. }
  862. /*---------------------
  863. Inverted Vertical
  864. ----------------------*/
  865. .ui.secondary.inverted.vertical.pointing.menu {
  866. border-right: 3px solid rgba(255, 255, 255, 0.1);
  867. border-bottom: none;
  868. }
  869. /*--------------
  870. Text Menu
  871. ---------------*/
  872. .ui.text.menu {
  873. background-color: transparent;
  874. margin: 1rem -1rem;
  875. -moz-border-radius: 0px;
  876. -webkit-border-radius: 0px;
  877. border-radius: 0px;
  878. -webkit-box-shadow: none;
  879. -moz-box-shadow: none;
  880. box-shadow: none;
  881. }
  882. .ui.text.menu > .item {
  883. opacity: 0.8;
  884. margin: 0em 1em;
  885. padding: 0em;
  886. height: auto !important;
  887. -webkit-border-radius: 0px;
  888. -moz-border-radius: 0px;
  889. border-radius: 0px;
  890. -webkit-box-shadow: none;
  891. -moz-box-shadow: none;
  892. box-shadow: none;
  893. -webkit-transition:
  894. opacity 0.2s ease
  895. ;
  896. -moz-transition:
  897. opacity 0.2s ease
  898. ;
  899. -o-transition:
  900. opacity 0.2s ease
  901. ;
  902. -ms-transition:
  903. opacity 0.2s ease
  904. ;
  905. transition:
  906. opacity 0.2s ease
  907. ;
  908. }
  909. .ui.text.menu > .item:before {
  910. display: none !important;
  911. }
  912. .ui.text.menu .header.item {
  913. background-color: transparent;
  914. opacity: 1;
  915. color: rgba(50, 50, 50, 0.8);
  916. font-size: 0.875rem;
  917. padding: 0em;
  918. text-transform: uppercase;
  919. font-weight: bold;
  920. }
  921. /*--- fluid text ---*/
  922. .ui.text.item.menu .item {
  923. margin: 0em;
  924. }
  925. /*--- vertical text ---*/
  926. .ui.vertical.text.menu {
  927. margin: 1rem 0em;
  928. }
  929. .ui.vertical.text.menu:first-child {
  930. margin-top: 0rem;
  931. }
  932. .ui.vertical.text.menu:last-child {
  933. margin-bottom: 0rem;
  934. }
  935. .ui.vertical.text.menu .item {
  936. float: left;
  937. clear: left;
  938. margin: 0.5em 0em;
  939. }
  940. .ui.vertical.text.menu .item > .icon {
  941. float: none;
  942. margin: 0em 0.83em 0em 0em;
  943. }
  944. .ui.vertical.text.menu .header.item {
  945. margin: 0.8em 0em;
  946. }
  947. /*--- hover ---*/
  948. .ui.text.menu .item.hover,
  949. .ui.text.menu .item:hover {
  950. opacity: 1;
  951. background-color: transparent;
  952. }
  953. /*--- active ---*/
  954. .ui.text.menu .active.item {
  955. background-color: transparent;
  956. padding: 0em;
  957. border: none;
  958. opacity: 1;
  959. font-weight: bold;
  960. -webkit-box-shadow: none;
  961. -moz-box-shadow: none;
  962. box-shadow: none;
  963. }
  964. /* disable variations */
  965. .ui.text.pointing.menu .active.item:after {
  966. -webkit-box-shadow: none;
  967. -moz-box-shadow: none;
  968. box-shadow: none;
  969. }
  970. .ui.text.attached.menu {
  971. -webkit-box-shadow: none;
  972. -moz-box-shadow: none;
  973. box-shadow: none;
  974. }
  975. .ui.inverted.text.menu,
  976. .ui.inverted.text.menu .item,
  977. .ui.inverted.text.menu .item:hover,
  978. .ui.inverted.text.menu .item.active {
  979. background-color: transparent;
  980. }
  981. /*--------------
  982. Icon Only
  983. ---------------*/
  984. .ui.icon.menu,
  985. .ui.vertical.icon.menu {
  986. width: auto;
  987. display: inline-block;
  988. height: auto;
  989. }
  990. .ui.icon.menu > .item {
  991. height: auto;
  992. text-align: center;
  993. color: rgba(60, 60, 60, 0.7);
  994. }
  995. .ui.icon.menu > .item > .icon {
  996. display: block;
  997. float: none !important;
  998. opacity: 1;
  999. margin: 0em auto !important;
  1000. }
  1001. .ui.icon.menu .icon:before {
  1002. opacity: 1;
  1003. }
  1004. /* Item Icon Only */
  1005. .ui.menu .icon.item .icon {
  1006. margin: 0em;
  1007. }
  1008. .ui.vertical.icon.menu {
  1009. float: none;
  1010. }
  1011. /*--- inverted ---*/
  1012. .ui.inverted.icon.menu .item {
  1013. color: rgba(255, 255, 255, 0.8);
  1014. }
  1015. .ui.inverted.icon.menu .icon {
  1016. color: rgba(255, 255, 255, 1);
  1017. }
  1018. /*--------------
  1019. Labeled Icon
  1020. ---------------*/
  1021. .ui.labeled.icon.menu {
  1022. text-align: center;
  1023. }
  1024. .ui.labeled.icon.menu > .item > .icon {
  1025. display: block;
  1026. font-size: 1.5em !important;
  1027. margin: 0em auto 0.3em !important;
  1028. }
  1029. /*******************************
  1030. Variations
  1031. *******************************/
  1032. /*--------------
  1033. Colors
  1034. ---------------*/
  1035. /*--- Light Colors ---*/
  1036. .ui.menu .green.active.item,
  1037. .ui.green.menu .active.item {
  1038. border-color: #A1CF64 !important;
  1039. color: #A1CF64 !important;
  1040. }
  1041. .ui.menu .red.active.item,
  1042. .ui.red.menu .active.item {
  1043. border-color: #D95C5C !important;
  1044. color: #D95C5C !important;
  1045. }
  1046. .ui.menu .blue.active.item,
  1047. .ui.blue.menu .active.item {
  1048. border-color: #6ECFF5 !important;
  1049. color: #6ECFF5 !important;
  1050. }
  1051. .ui.menu .purple.active.item,
  1052. .ui.purple.menu .active.item {
  1053. border-color: #564F8A !important;
  1054. color: #564F8A !important;
  1055. }
  1056. .ui.menu .orange.active.item,
  1057. .ui.orange.menu .active.item {
  1058. border-color: #F05940 !important;
  1059. color: #F05940 !important;
  1060. }
  1061. .ui.menu .teal.active.item,
  1062. .ui.teal.menu .active.item {
  1063. border-color: #00B5AD !important;
  1064. color: #00B5AD !important;
  1065. }
  1066. /*--------------
  1067. Inverted
  1068. ---------------*/
  1069. .ui.inverted.menu {
  1070. background-color: #333333;
  1071. box-shadow: none;
  1072. }
  1073. .ui.inverted.menu .header.item {
  1074. margin: 0em;
  1075. background-color: rgba(0, 0, 0, 0.3);
  1076. -webkit-box-shadow: none;
  1077. -moz-box-shadow: none;
  1078. box-shadow: none;
  1079. }
  1080. .ui.inverted.menu .item,
  1081. .ui.inverted.menu .item > a {
  1082. color: #FFFFFF;
  1083. }
  1084. .ui.inverted.menu .item .item,
  1085. .ui.inverted.menu .item .item > a {
  1086. color: rgba(255, 255, 255, 0.8);
  1087. }
  1088. .ui.inverted.menu .dropdown.item .menu .item,
  1089. .ui.inverted.menu .dropdown.item .menu .item a {
  1090. color: rgba(0, 0, 0, 0.75) !important;
  1091. }
  1092. .ui.inverted.menu .item.disabled,
  1093. .ui.inverted.menu .item.disabled:hover,
  1094. .ui.inverted.menu .item.disabled.hover {
  1095. color: rgba(255, 255, 255, 0.2);
  1096. }
  1097. /*--- Border ---*/
  1098. .ui.inverted.menu .item:before {
  1099. background-image: -webkit-linear-gradient(top,
  1100. rgba(255, 255, 255, 0.03) 0%,
  1101. rgba(255, 255, 255, 0.1) 50%,
  1102. rgba(255, 255, 255, 0.03) 100%)
  1103. ;
  1104. background-image: -moz-linear-gradient(top,
  1105. rgba(255, 255, 255, 0.03) 0%,
  1106. rgba(255, 255, 255, 0.1) 50%,
  1107. rgba(255, 255, 255, 0.03) 100%)
  1108. ;
  1109. background-image: -o-linear-gradient(top,
  1110. rgba(255, 255, 255, 0.03) 0%,
  1111. rgba(255, 255, 255, 0.1) 50%,
  1112. rgba(255, 255, 255, 0.03) 100%)
  1113. ;
  1114. background-image: -ms-linear-gradient(top,
  1115. rgba(255, 255, 255, 0.03) 0%,
  1116. rgba(255, 255, 255, 0.1) 50%,
  1117. rgba(255, 255, 255, 0.03) 100%)
  1118. ;
  1119. background-image: linear-gradient(top,
  1120. rgba(255, 255, 255, 0.03) 0%,
  1121. rgba(255, 255, 255, 0.1) 50%,
  1122. rgba(255, 255, 255, 0.03) 100%)
  1123. ;
  1124. }
  1125. .ui.vertical.inverted.menu .item:before {
  1126. background-image: -webkit-linear-gradient(left,
  1127. rgba(255, 255, 255, 0.03) 0%,
  1128. rgba(255, 255, 255, 0.1) 50%,
  1129. rgba(255, 255, 255, 0.03) 100%)
  1130. ;
  1131. background-image: -moz-linear-gradient(left,
  1132. rgba(255, 255, 255, 0.03) 0%,
  1133. rgba(255, 255, 255, 0.1) 50%,
  1134. rgba(255, 255, 255, 0.03) 100%)
  1135. ;
  1136. background-image: -o-linear-gradient(left,
  1137. rgba(255, 255, 255, 0.03) 0%,
  1138. rgba(255, 255, 255, 0.1) 50%,
  1139. rgba(255, 255, 255, 0.03) 100%)
  1140. ;
  1141. background-image: -ms-linear-gradient(left,
  1142. rgba(255, 255, 255, 0.03) 0%,
  1143. rgba(255, 255, 255, 0.1) 50%,
  1144. rgba(255, 255, 255, 0.03) 100%)
  1145. ;
  1146. background-image: linear-gradient(left,
  1147. rgba(255, 255, 255, 0.03) 0%,
  1148. rgba(255, 255, 255, 0.1) 50%,
  1149. rgba(255, 255, 255, 0.03) 100%)
  1150. ;
  1151. }
  1152. /*--- Hover ---*/
  1153. .ui.link.inverted.menu .item:hover,
  1154. .ui.inverted.menu .item.hover,
  1155. .ui.inverted.menu .link.item:hover,
  1156. .ui.inverted.menu a.item:hover,
  1157. .ui.inverted.menu .dropdown.item.hover,
  1158. .ui.inverted.menu .dropdown.item:hover {
  1159. background-color: rgba(255, 255, 255, 0.1);
  1160. }
  1161. .ui.inverted.menu a.item:hover,
  1162. .ui.inverted.menu .item.hover,
  1163. .ui.inverted.menu .item > a:hover,
  1164. .ui.inverted.menu .item .menu a.item:hover,
  1165. .ui.inverted.menu .item .menu a.item.hover,
  1166. .ui.inverted.menu .item .menu .link.item:hover,
  1167. .ui.inverted.menu .item .menu .link.item.hover {
  1168. color: rgba(255, 255, 255, 1);
  1169. }
  1170. /*--- Down ---*/
  1171. .ui.inverted.menu .item.down,
  1172. .ui.inverted.menu a.item:active,
  1173. .ui.inverted.menu .item.down,
  1174. .ui.inverted.menu .dropdown.item:active,
  1175. .ui.inverted.menu .link.item:active,
  1176. .ui.inverted.menu a.item:active {
  1177. background-color: rgba(255, 255, 255, 0.15);
  1178. }
  1179. /*--- Active ---*/
  1180. .ui.inverted.menu .active.item {
  1181. box-shadow: none !important;
  1182. background-color: rgba(255, 255, 255, 0.2);
  1183. }
  1184. .ui.inverted.menu .active.item,
  1185. .ui.inverted.menu .active.item a {
  1186. color: rgba(255, 255, 255, 1) !important;
  1187. }
  1188. .ui.inverted.vertical.menu .item .menu .active.item {
  1189. background-color: rgba(255, 255, 255, 0.2);
  1190. color: rgba(255, 255, 255, 1);
  1191. }
  1192. /*--- Pointers ---*/
  1193. .ui.inverted.pointing.menu .active.item:after {
  1194. background-color: #505050;
  1195. box-shadow: none;
  1196. }
  1197. .ui.inverted.pointing.menu .active.item:hover:after {
  1198. background-color: #3B3B3B;
  1199. }
  1200. /*--------------
  1201. Selection
  1202. ---------------*/
  1203. .ui.selection.menu > .item {
  1204. color: rgba(0, 0, 0, 0.4);
  1205. }
  1206. .ui.selection.menu > .item:hover {
  1207. color: rgba(0, 0, 0, 0.6);
  1208. }
  1209. .ui.selection.menu > .item.active {
  1210. color: rgba(0, 0, 0, 0.85);
  1211. }
  1212. .ui.inverted.selection.menu > .item {
  1213. color: rgba(255, 255, 255, 0.4);
  1214. }
  1215. .ui.inverted.selection.menu > .item:hover {
  1216. color: rgba(255, 255, 255, 0.9);
  1217. }
  1218. .ui.inverted.selection.menu > .item.active {
  1219. color: #FFFFFF;
  1220. }
  1221. /*--------------
  1222. Floated
  1223. ---------------*/
  1224. .ui.floated.menu {
  1225. float: left;
  1226. margin: 0rem 0.5rem 0rem 0rem;
  1227. }
  1228. .ui.right.floated.menu {
  1229. float: right;
  1230. margin: 0rem 0rem 0rem 0.5rem;
  1231. }
  1232. /*--------------
  1233. Inverted Colors
  1234. ---------------*/
  1235. /*--- Light Colors ---*/
  1236. .ui.grey.menu {
  1237. background-color: #F0F0F0;
  1238. }
  1239. /*--- Inverted Colors ---*/
  1240. .ui.inverted.green.menu {
  1241. background-color: #A1CF64;
  1242. }
  1243. .ui.inverted.green.pointing.menu .active.item:after {
  1244. background-color: #A1CF64;
  1245. }
  1246. .ui.inverted.red.menu {
  1247. background-color: #D95C5C;
  1248. }
  1249. .ui.inverted.red.pointing.menu .active.item:after {
  1250. background-color: #F16883;
  1251. }
  1252. .ui.inverted.blue.menu {
  1253. background-color: #6ECFF5;
  1254. }
  1255. .ui.inverted.blue.pointing.menu .active.item:after {
  1256. background-color: #6ECFF5;
  1257. }
  1258. .ui.inverted.purple.menu {
  1259. background-color: #564F8A;
  1260. }
  1261. .ui.inverted.purple.pointing.menu .active.item:after {
  1262. background-color: #564F8A;
  1263. }
  1264. .ui.inverted.orange.menu {
  1265. background-color: #F05940;
  1266. }
  1267. .ui.inverted.orange.pointing.menu .active.item:after {
  1268. background-color: #F05940;
  1269. }
  1270. .ui.inverted.teal.menu {
  1271. background-color: #00B5AD;
  1272. }
  1273. .ui.inverted.teal.pointing.menu .active.item:after {
  1274. background-color: #00B5AD;
  1275. }
  1276. /*--------------
  1277. Fitted
  1278. ---------------*/
  1279. .ui.fitted.menu .item,
  1280. .ui.fitted.menu .item .menu .item,
  1281. .ui.menu .fitted.item {
  1282. padding-top: 0em;
  1283. padding-bottom: 0em;
  1284. }
  1285. /*--------------
  1286. Tight
  1287. ---------------*/
  1288. .ui.tight.menu .item,
  1289. .ui.tight.menu .item .menu .item,
  1290. .ui.menu .tight.item {
  1291. padding: 0em;
  1292. }
  1293. /*--------------
  1294. Borderless
  1295. ---------------*/
  1296. .ui.borderless.menu .item:before,
  1297. .ui.borderless.menu .item .menu .item:before,
  1298. .ui.menu .borderless.item:before {
  1299. background-image: none;
  1300. }
  1301. /*-------------------
  1302. Compact
  1303. --------------------*/
  1304. .ui.compact.menu {
  1305. display: inline-block;
  1306. margin: 0em;
  1307. vertical-align: middle;
  1308. }
  1309. .ui.compact.vertical.menu {
  1310. width: auto !important;
  1311. }
  1312. .ui.compact.vertical.menu .item:last-child::before {
  1313. display: block;
  1314. }
  1315. /*-------------------
  1316. Fluid
  1317. --------------------*/
  1318. .ui.menu.fluid,
  1319. .ui.vertical.menu.fluid {
  1320. display: block;
  1321. width: 100% !important;
  1322. }
  1323. /*-------------------
  1324. Evenly Sized
  1325. --------------------*/
  1326. .ui.item.menu,
  1327. .ui.item.menu .item {
  1328. width: 100%;
  1329. padding-left: 0px !important;
  1330. padding-right: 0px !important;
  1331. text-align: center;
  1332. }
  1333. .ui.menu.two.item .item {
  1334. width: 50%;
  1335. }
  1336. .ui.menu.three.item .item {
  1337. width: 33.333%;
  1338. }
  1339. .ui.menu.four.item .item {
  1340. width: 25%;
  1341. }
  1342. .ui.menu.five.item .item {
  1343. width: 20%;
  1344. }
  1345. .ui.menu.six.item .item {
  1346. width: 16.666%;
  1347. }
  1348. .ui.menu.seven.item .item {
  1349. width: 14.285%;
  1350. }
  1351. .ui.menu.eight.item .item {
  1352. width: 12.500%;
  1353. }
  1354. .ui.menu.nine.item .item {
  1355. width: 11.11%;
  1356. }
  1357. .ui.menu.ten.item .item {
  1358. width: 10.0%;
  1359. }
  1360. .ui.menu.eleven.item .item {
  1361. width: 9.09%;
  1362. }
  1363. .ui.menu.twelve.item .item {
  1364. width: 8.333%;
  1365. }
  1366. /*--------------
  1367. Fixed
  1368. ---------------*/
  1369. .ui.menu.fixed {
  1370. position: fixed;
  1371. z-index: 10;
  1372. margin: 0em;
  1373. border: none;
  1374. width: 100%;
  1375. }
  1376. .ui.menu.fixed,
  1377. .ui.menu.fixed .item:first-child,
  1378. .ui.menu.fixed .item:last-child {
  1379. -webkit-border-radius: 0px !important;
  1380. -moz-border-radius: 0px !important;
  1381. border-radius: 0px !important;
  1382. }
  1383. .ui.menu.fixed.top {
  1384. top: 0px;
  1385. left: 0px;
  1386. right: auto;
  1387. bottom: auto;
  1388. }
  1389. .ui.menu.fixed.right {
  1390. top: 0px;
  1391. right: 0px;
  1392. left: auto;
  1393. bottom: auto;
  1394. width: auto;
  1395. height: 100%;
  1396. }
  1397. .ui.menu.fixed.bottom {
  1398. bottom: 0px;
  1399. left: 0px;
  1400. top: auto;
  1401. right: auto;
  1402. }
  1403. .ui.menu.fixed.left {
  1404. top: 0px;
  1405. left: 0px;
  1406. right: auto;
  1407. bottom: auto;
  1408. width: auto;
  1409. height: 100%;
  1410. }
  1411. /*-------------------
  1412. Pointing
  1413. --------------------*/
  1414. .ui.pointing.menu .active.item:after {
  1415. position: absolute;
  1416. bottom: -0.35em;
  1417. left: 50%;
  1418. content: "";
  1419. margin-left: -0.3em;
  1420. width: 0.6em;
  1421. height: 0.6em;
  1422. border: none;
  1423. border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  1424. border-right: 1px solid rgba(0, 0, 0, 0.1);
  1425. background-image: none;
  1426. -webkit-transform: rotate(45deg);
  1427. -moz-transform: rotate(45deg);
  1428. transform: rotate(45deg);
  1429. z-index: 2;
  1430. -webkit-transition:
  1431. background 0.2s ease
  1432. ;
  1433. -moz-transition:
  1434. background 0.2s ease
  1435. ;
  1436. -o-transition:
  1437. background 0.2s ease
  1438. ;
  1439. -ms-transition:
  1440. background 0.2s ease
  1441. ;
  1442. transition:
  1443. background 0.2s ease
  1444. ;
  1445. }
  1446. /* Don't double up pointers */
  1447. .ui.pointing.menu .active.item .menu .active.item:after {
  1448. display: none;
  1449. }
  1450. .ui.vertical.pointing.menu .active.item:after {
  1451. position: absolute;
  1452. top: 50%;
  1453. margin-top: -0.3em;
  1454. right: -0.4em;
  1455. bottom: auto;
  1456. left: auto;
  1457. border: none;
  1458. border-top: 1px solid rgba(0, 0, 0, 0.1);
  1459. border-right: 1px solid rgba(0, 0, 0, 0.1);
  1460. }
  1461. /* Colors */
  1462. .ui.pointing.menu .active.item:after {
  1463. background-color: #FCFCFC;
  1464. }
  1465. .ui.pointing.menu .active.item.hover:after,
  1466. .ui.pointing.menu .active.item:hover:after {
  1467. background-color: #FAFAFA;
  1468. }
  1469. .ui.vertical.pointing.menu .menu .active.item:after {
  1470. background-color: #F4F4F4;
  1471. }
  1472. .ui.pointing.menu .active.item.down:after,
  1473. .ui.pointing.menu .active.item:active:after {
  1474. background-color: #F0F0F0;
  1475. }
  1476. /*--------------
  1477. Attached
  1478. ---------------*/
  1479. .ui.menu.attached {
  1480. margin: 0rem;
  1481. -moz-border-radius: 0px;
  1482. -webkit-border-radius: 0px;
  1483. border-radius: 0px;
  1484. /* avoid rgba multiplying */
  1485. -moz-box-shadow: 0px 0px 0px 1px #DDDDDD;
  1486. -webkit-box-shadow: 0px 0px 0px 1px #DDDDDD;
  1487. box-shadow: 0px 0px 0px 1px #DDDDDD;
  1488. }
  1489. .ui.top.attached.menu {
  1490. -moz-border-radius: 0.1875em 0.1875em 0px 0px;
  1491. -webkit-border-radius: 0.1875em 0.1875em 0px 0px;
  1492. border-radius: 0.1875em 0.1875em 0px 0px;
  1493. }
  1494. .ui.menu.bottom.attached {
  1495. -moz-border-radius: 0px 0px 0.1875em 0.1875em;
  1496. -webkit-border-radius: 0px 0px 0.1875em 0.1875em;
  1497. border-radius: 0px 0px 0.1875em 0.1875em;
  1498. }
  1499. /*--------------
  1500. Sizes
  1501. ---------------*/
  1502. .ui.small.menu .item {
  1503. font-size: 0.875rem;
  1504. }
  1505. .ui.small.vertical.menu {
  1506. width: 13rem;
  1507. }
  1508. .ui.menu .item {
  1509. font-size: 1rem;
  1510. height: 2.66em;
  1511. }
  1512. .ui.vertical.menu {
  1513. width: 15rem;
  1514. }
  1515. .ui.large.menu .item {
  1516. font-size: 1.125rem;
  1517. }
  1518. .ui.large.menu .item .item {
  1519. font-size: 0.875rem;
  1520. }
  1521. .ui.large.vertical.menu {
  1522. width: 18rem;
  1523. }