theme.css 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. /**
  2. * Copyright © Magento, Inc. All rights reserved.
  3. * See COPYING.txt for license details.
  4. */
  5. .js-files-container {
  6. margin: 20px 0;
  7. padding: 0;
  8. list-style: none;
  9. }
  10. .js-files-container .js-file {
  11. background: url("Magento_Theme::images/js_icon.gif") no-repeat scroll 5px 50% #ECECEC;
  12. border: 1px solid #CCCCCC;
  13. padding: 5px 5px 10px 30px;
  14. margin-left: 10px;
  15. }
  16. .js-files-container li {
  17. padding: 1px 1px 1px 30px;
  18. position: relative;
  19. z-index: 1;
  20. }
  21. .js-files-container li:after {
  22. clear: both;
  23. content: ".";
  24. display: block;
  25. font-size: 0;
  26. height: 0;
  27. line-height: 0;
  28. overflow: hidden;
  29. }
  30. .js-files-container li .up, .js-files-container li .down {
  31. border: 1px solid #CCCCCC;
  32. cursor: pointer;
  33. display: block;
  34. height: 15px;
  35. left: 0;
  36. margin: 2px 5px;
  37. overflow: hidden;
  38. position: absolute;
  39. top: -1px;
  40. width: 15px;
  41. }
  42. .js-files-container li .up {
  43. background: url("Magento_Theme::images/bkg_movable-arrows.png") no-repeat scroll 50% 3px #ECECEC;
  44. }
  45. .js-files-container li .down {
  46. background: url("Magento_Theme::images/bkg_movable-arrows.png") no-repeat scroll 50% -27px #ECECEC;
  47. bottom: 0;
  48. top: auto;
  49. }
  50. .js-files-container .js-file .remove-js {
  51. float: right;
  52. }
  53. .eq-ie8 .js-files-container li input[type="button"],
  54. .eq-ie8 .js-files-container li input[type="button"]:hover,
  55. .eq-ie8 .js-files-container li input[type="button"]:active,
  56. .eq-ie8 .js-files-container li input[type="button"]:focus,
  57. .eq-ie8 .js-files-container li input[type="button"][disabled] {
  58. filter: none;
  59. }
  60. #theme_js .uploader {
  61. padding-left: 30px;
  62. }