ustore.css 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360
  1. *[is=x-ui] ui-rest > ui-content > ui-resizehandle {
  2. z-index: 1;
  3. }
  4. [is="x-ui"] ui-rest > ui-content > ui-area{
  5. padding: 2em !important;
  6. }
  7. #selectfolders{
  8. box-sizing: border-box;
  9. width: 100%;
  10. }
  11. .Folder{
  12. margin: 1em;
  13. float: left;
  14. text-align: center;
  15. width: 8em;
  16. }
  17. .FolderImage{
  18. font-size: 3em;
  19. }
  20. .FolderImageLink:hover .FolderText{
  21. text-decoration: underline;
  22. }
  23. .FolderTextNew{
  24. margin-top: -2.1em;
  25. }
  26. #detailcolumn{
  27. position: relative;
  28. min-height: 95%;
  29. }
  30. #content-wrap {
  31. min-height: 95%;
  32. padding-bottom: -100px; /* Footer height */
  33. }
  34. #RemoveFolder{
  35. color: white;
  36. background-color: #c6000094;
  37. /*box-sizing: border-box;*/
  38. left: 1em;
  39. right: 1em;
  40. height: 1em;
  41. padding: 1em;
  42. }
  43. #RemoveFolder a{
  44. color: black;
  45. }
  46. .DataItem{
  47. position: relative;
  48. margin: 1em;
  49. padding-bottom: 1em;
  50. float: left;
  51. text-align: center;
  52. width: 8em;
  53. }
  54. .spanwrapping{
  55. position: relative;
  56. height: 2.2em;
  57. }
  58. .DataItem span{
  59. display:inline-block;
  60. overflow: hidden;
  61. text-overflow: ellipsis;
  62. display: -webkit-box;
  63. -webkit-line-clamp: 2; /* number of lines to show */
  64. -webkit-box-orient: vertical;
  65. position: absolute;
  66. bottom: 0;
  67. right: 0;
  68. left: 0;
  69. }
  70. .DataImg{
  71. text-align: center;
  72. vertical-align: middle;
  73. width: 8em;
  74. height: 8em;
  75. }
  76. .DataImg img{
  77. max-height: 100%;
  78. max-width: 100%;
  79. }
  80. .imageAlternative {
  81. vertical-align: middle;
  82. font-size: 6em;
  83. height: 100%;
  84. }
  85. #overlay {
  86. position: fixed; /* Sit on top of the page content */
  87. display: none; /* Hidden by default */
  88. width: 100%; /* Full width (cover the whole page) */
  89. height: 100%; /* Full height (cover the whole page) */
  90. top: 0;
  91. left: 0;
  92. right: 0;
  93. bottom: 0;
  94. background-color: rgba(0,0,0,0.5); /* Black background with opacity */
  95. z-index: 2; /* Specify a stack order in case you're using a different order for other elements */
  96. cursor: pointer; /* Add a pointer on hover */
  97. text-align: center;
  98. vertical-align: middle;
  99. }
  100. #overlaycontentsize{
  101. position: absolute;
  102. top: 50%;
  103. left: 50%;
  104. font-size: 50px;
  105. color: white;
  106. transform: translate(-50%,-50%);
  107. -ms-transform: translate(-50%,-50%);
  108. background-color: rgba(255,255,255,1);
  109. max-height: 100%;
  110. max-width: 100%;
  111. }
  112. #overlaycontent{
  113. max-height: 100%;
  114. max-width: 100%;
  115. }
  116. /*Image Upload CSS*/
  117. .container
  118. {
  119. width: 100%;
  120. max-width: 680px; /* 800 */
  121. text-align: center;
  122. margin: 0 auto;
  123. }
  124. .container h1
  125. {
  126. font-size: 42px;
  127. font-weight: 300;
  128. color: #0f3c4b;
  129. margin-bottom: 40px;
  130. }
  131. .container h1 a:hover,
  132. .container h1 a:focus
  133. {
  134. color: #39bfd3;
  135. }
  136. .container nav
  137. {
  138. margin-bottom: 40px;
  139. }
  140. .container nav a
  141. {
  142. border-bottom: 2px solid #c8dadf;
  143. display: inline-block;
  144. padding: 4px 8px;
  145. margin: 0 5px;
  146. }
  147. .container nav a.is-selected
  148. {
  149. font-weight: 700;
  150. color: #39bfd3;
  151. border-bottom-color: currentColor;
  152. }
  153. .container nav a:not( .is-selected ):hover,
  154. .container nav a:not( .is-selected ):focus
  155. {
  156. border-bottom-color: #0f3c4b;
  157. }
  158. .container footer
  159. {
  160. color: #92b0b3;
  161. margin-top: 40px;
  162. }
  163. .container footer p + p
  164. {
  165. margin-top: 1em;
  166. }
  167. .container footer a:hover,
  168. .container footer a:focus
  169. {
  170. color: #39bfd3;
  171. }
  172. .box
  173. {
  174. font-size: 1.25rem; /* 20 */
  175. background-color: var(--x-ui-outside-color);
  176. position: relative;
  177. padding: 100px 20px;
  178. }
  179. .box.has-advanced-upload
  180. {
  181. outline: 2px dashed #92b0b3;
  182. outline-offset: -10px;
  183. -webkit-transition: outline-offset .15s ease-in-out, background-color .15s linear;
  184. transition: outline-offset .15s ease-in-out, background-color .15s linear;
  185. }
  186. .box.is-dragover
  187. {
  188. outline-offset: -20px;
  189. outline-color: #c8dadf;
  190. background-color: #fff;
  191. }
  192. .box__dragndrop,
  193. .box__icon
  194. {
  195. display: none;
  196. }
  197. .box.has-advanced-upload .box__dragndrop
  198. {
  199. display: inline;
  200. }
  201. .box.has-advanced-upload .box__icon
  202. {
  203. width: 100%;
  204. height: 80px;
  205. fill: #92b0b3;
  206. display: block;
  207. margin-bottom: 40px;
  208. }
  209. .box.is-uploading .box__input,
  210. .box.is-success .box__input,
  211. .box.is-error .box__input
  212. {
  213. visibility: hidden;
  214. }
  215. .box__uploading,
  216. .box__success,
  217. .box__error
  218. {
  219. display: none;
  220. }
  221. .box.is-uploading .box__uploading,
  222. .box.is-success .box__success,
  223. .box.is-error .box__error
  224. {
  225. display: block;
  226. position: absolute;
  227. top: 50%;
  228. right: 0;
  229. left: 0;
  230. -webkit-transform: translateY( -50% );
  231. transform: translateY( -50% );
  232. }
  233. .box__uploading
  234. {
  235. font-style: italic;
  236. }
  237. .box__success
  238. {
  239. -webkit-animation: appear-from-inside .25s ease-in-out;
  240. animation: appear-from-inside .25s ease-in-out;
  241. }
  242. @-webkit-keyframes appear-from-inside
  243. {
  244. from { -webkit-transform: translateY( -50% ) scale( 0 ); }
  245. 75% { -webkit-transform: translateY( -50% ) scale( 1.1 ); }
  246. to { -webkit-transform: translateY( -50% ) scale( 1 ); }
  247. }
  248. @keyframes appear-from-inside
  249. {
  250. from { transform: translateY( -50% ) scale( 0 ); }
  251. 75% { transform: translateY( -50% ) scale( 1.1 ); }
  252. to { transform: translateY( -50% ) scale( 1 ); }
  253. }
  254. .box__restart
  255. {
  256. font-weight: 700;
  257. }
  258. .box__restart:focus,
  259. .box__restart:hover
  260. {
  261. color: #39bfd3;
  262. }
  263. .js .box__file
  264. {
  265. width: 0.1px !important;
  266. height: 0.1px;
  267. opacity: 0;
  268. overflow: hidden;
  269. position: absolute;
  270. z-index: -1;
  271. }
  272. .box__file{
  273. width: 10.5em !important;
  274. display: block !important;
  275. }
  276. .js .box__file + label
  277. {
  278. max-width: 80% !important;
  279. text-overflow: ellipsis;
  280. white-space: nowrap;
  281. cursor: pointer;
  282. display: inline-block;
  283. overflow: hidden;
  284. }
  285. .js .box__file + label:hover strong,
  286. .box__file:focus + label strong,
  287. .box__file.has-focus + label strong
  288. {
  289. color: #39bfd3;
  290. }
  291. .js .box__file:focus + label,
  292. .js .box__file.has-focus + label
  293. {
  294. outline: 1px dotted #000;
  295. outline: -webkit-focus-ring-color auto 5px;
  296. }
  297. .js .box__file + label *
  298. {
  299. /* pointer-events: none; */ /* in case of FastClick lib use */
  300. }
  301. .no-js .box__file + label
  302. {
  303. display: none;
  304. }
  305. .no-js .box__button
  306. {
  307. display: block;
  308. }
  309. .box__button
  310. {
  311. font-weight: 700;
  312. color: #e5edf1;
  313. background-color: #39bfd3;
  314. display: none;
  315. padding: 8px 16px;
  316. margin: 40px auto 0;
  317. }
  318. .box__button:hover,
  319. .box__button:focus
  320. {
  321. background-color: #0f3c4b;
  322. }