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.

430 lines
8.0 KiB

9 years ago
10 years ago
9 years ago
10 years ago
10 years ago
9 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
9 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
  1. /*!
  2. * # Semantic UI 1.10.3 - Modal
  3. * http://github.com/semantic-org/semantic-ui/
  4. *
  5. *
  6. * Copyright 2014 Contributors
  7. * Released under the MIT license
  8. * http://opensource.org/licenses/MIT
  9. *
  10. */
  11. /*******************************
  12. Modal
  13. *******************************/
  14. .ui.modal {
  15. display: none;
  16. position: fixed;
  17. z-index: 1001;
  18. top: 50%;
  19. left: 50%;
  20. text-align: left;
  21. width: 90%;
  22. margin-left: -45%;
  23. background: #ffffff;
  24. border: none;
  25. box-shadow: 0 1px 4px 1px rgba(0, 0, 0, 0.3);
  26. border-radius: 0.2857rem;
  27. -webkit-user-select: text;
  28. -moz-user-select: text;
  29. -ms-user-select: text;
  30. user-select: text;
  31. will-change: top, left, margin, transform, opacity;
  32. }
  33. .ui.modal > :first-child:not(.icon),
  34. .ui.modal > .icon:first-child + * {
  35. border-top-left-radius: 0.2857rem;
  36. border-top-right-radius: 0.2857rem;
  37. }
  38. .ui.modal > :last-child {
  39. border-bottom-left-radius: 0.2857rem;
  40. border-bottom-right-radius: 0.2857rem;
  41. }
  42. /*******************************
  43. Content
  44. *******************************/
  45. /*--------------
  46. Close
  47. ---------------*/
  48. .ui.modal > .close {
  49. cursor: pointer;
  50. position: absolute;
  51. top: -2.5rem;
  52. right: -2.5rem;
  53. z-index: 1;
  54. opacity: 0.8;
  55. font-size: 1.25em;
  56. color: #ffffff;
  57. width: 2.25rem;
  58. height: 2.25rem;
  59. padding: 0.625rem 0rem 0rem 0rem;
  60. }
  61. .ui.modal > .close:hover {
  62. opacity: 1;
  63. }
  64. /*--------------
  65. Header
  66. ---------------*/
  67. .ui.modal > .header {
  68. display: block;
  69. font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif;
  70. background: -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.05)) #ffffff;
  71. background: linear-gradient(transparent, rgba(0, 0, 0, 0.05)) #ffffff;
  72. margin: 0em;
  73. padding: 1.2rem 2rem;
  74. box-shadow: 0px 1px 2px 0 rgba(0, 0, 0, 0.05);
  75. font-size: 1.6em;
  76. line-height: 1.3em;
  77. font-weight: bold;
  78. color: rgba(0, 0, 0, 0.85);
  79. border-bottom: 1px solid rgba(39, 41, 43, 0.15);
  80. }
  81. /*--------------
  82. Content
  83. ---------------*/
  84. .ui.modal > .content {
  85. display: table;
  86. table-layout: fixed;
  87. width: 100%;
  88. font-size: 1em;
  89. line-height: 1.4;
  90. padding: 2rem;
  91. background: #ffffff;
  92. }
  93. /* Image */
  94. .ui.modal > .content > .image {
  95. display: table-cell;
  96. width: '';
  97. vertical-align: top;
  98. }
  99. .ui.modal > .content > .image[class*="top aligned"] {
  100. vertical-align: top;
  101. }
  102. .ui.modal > .content > .image[class*="middle aligned"] {
  103. vertical-align: middle;
  104. }
  105. /* Description */
  106. .ui.modal > .content > .description {
  107. display: table-cell;
  108. vertical-align: top;
  109. }
  110. .ui.modal > .content > .icon + .description,
  111. .ui.modal > .content > .image + .description {
  112. min-width: '';
  113. width: 80%;
  114. padding-left: 2em;
  115. }
  116. /*rtl:ignore*/
  117. .ui.modal > .content > .image > i.icon {
  118. font-size: 8rem;
  119. margin: 0em;
  120. opacity: 1;
  121. width: auto;
  122. }
  123. /*--------------
  124. Actions
  125. ---------------*/
  126. .ui.modal .actions {
  127. background: #efefef;
  128. padding: 1rem 2rem;
  129. border-top: 1px solid rgba(39, 41, 43, 0.15);
  130. text-align: right;
  131. }
  132. .ui.modal .actions > .button {
  133. margin-left: 0.75em;
  134. }
  135. /*-------------------
  136. Responsive
  137. --------------------*/
  138. /* Modal Width */
  139. @media only screen and (max-width: 767px) {
  140. .ui.modal {
  141. width: 95%;
  142. margin: 0em 0em 0em -47.5%;
  143. }
  144. }
  145. @media only screen and (min-width: 768px) {
  146. .ui.modal {
  147. width: 88%;
  148. margin: 0em 0em 0em -44%;
  149. }
  150. }
  151. @media only screen and (min-width: 992px) {
  152. .ui.modal {
  153. width: 74%;
  154. margin: 0em 0em 0em -37%;
  155. }
  156. }
  157. @media only screen and (min-width: 1400px) {
  158. .ui.modal {
  159. width: 56%;
  160. margin: 0em 0em 0em -28%;
  161. }
  162. }
  163. @media only screen and (min-width: 1920px) {
  164. .ui.modal {
  165. width: 42%;
  166. margin: 0em 0em 0em -21%;
  167. }
  168. }
  169. /* Tablet and Mobile */
  170. @media only screen and (max-width: 992px) {
  171. .ui.modal > .header {
  172. padding-right: 2.25rem;
  173. }
  174. .ui.modal > .close {
  175. top: 0.905rem;
  176. right: 1rem;
  177. color: rgba(0, 0, 0, 0.8);
  178. }
  179. }
  180. /* Mobile */
  181. @media only screen and (max-width: 767px) {
  182. .ui.modal > .header {
  183. padding: 0.75rem 1rem !important;
  184. padding-right: 2.25rem !important;
  185. }
  186. .ui.modal > .content {
  187. display: block;
  188. padding: 1rem !important;
  189. }
  190. .ui.modal > .close {
  191. top: 0.5rem !important;
  192. right: 0.5rem !important;
  193. }
  194. /*rtl:ignore*/
  195. .ui.modal .content > .image {
  196. display: block;
  197. max-width: 100%;
  198. margin: 0em auto !important;
  199. text-align: center;
  200. padding: 0rem 0rem 1rem !important;
  201. }
  202. .ui.modal > .content > .image > i.icon {
  203. font-size: 5rem;
  204. text-align: center;
  205. }
  206. /*rtl:ignore*/
  207. .ui.modal .content > .description {
  208. display: block;
  209. width: 100% !important;
  210. margin: 0em !important;
  211. padding: 1rem 0rem !important;
  212. box-shadow: none;
  213. }
  214. .ui.modal > .actions {
  215. padding: 1rem 1rem -1rem !important;
  216. }
  217. .ui.modal .actions > .buttons,
  218. .ui.modal .actions > .button {
  219. margin-bottom: 2rem;
  220. }
  221. }
  222. /*******************************
  223. Types
  224. *******************************/
  225. .ui.basic.modal {
  226. background-color: transparent;
  227. border: none;
  228. border-radius: 0em;
  229. box-shadow: 0px 0px 0px 0px;
  230. color: #ffffff;
  231. }
  232. .ui.basic.modal > .header,
  233. .ui.basic.modal > .content,
  234. .ui.basic.modal > .actions {
  235. background-color: transparent;
  236. }
  237. .ui.basic.modal > .header {
  238. color: #ffffff;
  239. }
  240. .ui.basic.modal > .close {
  241. top: 1rem;
  242. right: 1.5rem;
  243. }
  244. /* Tablet and Mobile */
  245. @media only screen and (max-width: 992px) {
  246. .ui.basic.modal > .close {
  247. color: #ffffff;
  248. }
  249. }
  250. /*******************************
  251. Variations
  252. *******************************/
  253. /* A modal that cannot fit on the page */
  254. .scrolling.dimmable.dimmed {
  255. overflow: hidden;
  256. }
  257. .scrolling.dimmable.dimmed > .dimmer {
  258. overflow: auto;
  259. -webkit-overflow-scrolling: touch;
  260. }
  261. .scrolling.dimmable > .dimmer {
  262. position: fixed;
  263. }
  264. .ui.scrolling.modal {
  265. position: static;
  266. margin: 3.5rem auto !important;
  267. }
  268. @media only screen and (max-width: 992px) {
  269. .ui.scrolling.modal {
  270. margin-top: 1rem;
  271. margin-bottom: 1rem;
  272. }
  273. }
  274. /*******************************
  275. States
  276. *******************************/
  277. .ui.active.modal {
  278. display: block;
  279. }
  280. /*******************************
  281. Variations
  282. *******************************/
  283. /*--------------
  284. Full Screen
  285. ---------------*/
  286. .ui.fullscreen.modal {
  287. width: 95% !important;
  288. left: 2.5% !important;
  289. margin: 1em auto;
  290. }
  291. .ui.fullscreen.scrolling.modal {
  292. left: 0em !important;
  293. }
  294. .ui.fullscreen.modal > .header {
  295. padding-right: 2.25rem;
  296. }
  297. .ui.fullscreen.modal > .close {
  298. top: 0.905rem;
  299. right: 1rem;
  300. color: rgba(0, 0, 0, 0.8);
  301. }
  302. /*--------------
  303. Size
  304. ---------------*/
  305. .ui.modal {
  306. font-size: 1rem;
  307. }
  308. /* Small */
  309. .ui.small.modal > .header {
  310. font-size: 1.3em;
  311. }
  312. /* Small Modal Width */
  313. @media only screen and (max-width: 767px) {
  314. .ui.small.modal {
  315. width: 95%;
  316. margin: 0em 0em 0em -47.5%;
  317. }
  318. }
  319. @media only screen and (min-width: 768px) {
  320. .ui.small.modal {
  321. width: 52.8%;
  322. margin: 0em 0em 0em -26.4%;
  323. }
  324. }
  325. @media only screen and (min-width: 992px) {
  326. .ui.small.modal {
  327. width: 44.4%;
  328. margin: 0em 0em 0em -22.2%;
  329. }
  330. }
  331. @media only screen and (min-width: 1400px) {
  332. .ui.small.modal {
  333. width: 33.6%;
  334. margin: 0em 0em 0em -16.8%;
  335. }
  336. }
  337. @media only screen and (min-width: 1920px) {
  338. .ui.small.modal {
  339. width: 25.2%;
  340. margin: 0em 0em 0em -12.6%;
  341. }
  342. }
  343. /* Large Modal Width */
  344. .ui.large.modal > .header {
  345. font-size: 1.6em;
  346. }
  347. @media only screen and (max-width: 767px) {
  348. .ui.large.modal {
  349. width: 95%;
  350. margin: 0em 0em 0em -47.5%;
  351. }
  352. }
  353. @media only screen and (min-width: 768px) {
  354. .ui.large.modal {
  355. width: 88%;
  356. margin: 0em 0em 0em -44%;
  357. }
  358. }
  359. @media only screen and (min-width: 992px) {
  360. .ui.large.modal {
  361. width: 88.8%;
  362. margin: 0em 0em 0em -44.4%;
  363. }
  364. }
  365. @media only screen and (min-width: 1400px) {
  366. .ui.large.modal {
  367. width: 67.2%;
  368. margin: 0em 0em 0em -33.6%;
  369. }
  370. }
  371. @media only screen and (min-width: 1920px) {
  372. .ui.large.modal {
  373. width: 50.4%;
  374. margin: 0em 0em 0em -25.2%;
  375. }
  376. }
  377. /*******************************
  378. Theme Overrides
  379. *******************************/
  380. /*******************************
  381. Site Overrides
  382. *******************************/