ustore.css 7.0 KB

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