ustore.css 7.6 KB

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