Row.scss 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  1. $whiteBackground: #ececec;
  2. $primary: #2c54ac;
  3. $primaryLight: #d7dcef;
  4. $primaryActive: #1e5cb2;
  5. $secondary: #fcac04;
  6. $secondaryLight: #f8b014;
  7. $secondaryActive: #fdb51c;
  8. $hoverButtonText: #2c54ac;
  9. $activeButtonText: #fff;
  10. $textColor: #555;
  11. .list .list-container ul li svg {
  12. width: 25px;
  13. vertical-align: top;
  14. margin-top: 9px;
  15. margin-left: 10px;
  16. }
  17. .html5 {
  18. color: #f16529;
  19. }
  20. .file-alt {
  21. color: #20d2d1;
  22. }
  23. .list .list-container ul li {
  24. .marker {
  25. float: left;
  26. width: 4px;
  27. height: 34px;
  28. margin-right: 5px;
  29. }
  30. }
  31. .list .list-container ul li .js {
  32. width: 16px;
  33. color: #f7df1c;
  34. background: black;
  35. margin: 9px 4px 0 15px;
  36. }
  37. .php {
  38. color: #777bb3;
  39. }
  40. .css3 {
  41. color: #0079cb;
  42. }
  43. .sass {
  44. color: #cd6699;
  45. }
  46. .image {
  47. color: #36afae;
  48. }
  49. .folder-open {
  50. color: #e29741;
  51. }
  52. .file {
  53. color: #11b1b1;
  54. }
  55. .archive {
  56. color: rgb(209, 206, 43);
  57. }
  58. .download {
  59. color: #929ca3;
  60. }
  61. .fOwner,
  62. .fPermissions,
  63. .fSize,
  64. .fDate,
  65. .fTime {
  66. font-size: 14px;
  67. float: right;
  68. width: 60px;
  69. padding-top: 2px;
  70. }
  71. .list .list-container ul li .fName {
  72. margin-left: 5px;
  73. width: 260px;
  74. display: inline-block;
  75. overflow: hidden;
  76. text-overflow: clip;
  77. .name {
  78. padding: 0 5px;
  79. float: left;
  80. margin-left: 5px;
  81. line-height: 34px;
  82. font-size: 15px;
  83. white-space: nowrap;
  84. transition: all ease-out .3s;
  85. &:hover {
  86. transition: all ease-out .2s;
  87. background: rgb(201, 199, 199);
  88. border-radius: 4px;
  89. cursor: pointer;
  90. }
  91. }
  92. }
  93. .list .list-container ul li.active .fName .name:hover {
  94. background: #F0B607;
  95. color: black;
  96. }
  97. .list .list-container ul li .fPermissions {
  98. margin-left: 35px;
  99. width: 50px;
  100. color: #727272;
  101. font-size: 11px;
  102. }
  103. .list .list-container ul li .fDate .date {
  104. color: #727272;
  105. font-size: 11px;
  106. }
  107. .list .list-container ul li .fTime {
  108. color: #727272;
  109. font-size: 11px;
  110. width: 54px;
  111. }
  112. .fSize {
  113. padding-right: 15px;
  114. text-align: right;
  115. width: 95px;
  116. }
  117. .list .list-container ul li .fOwner {
  118. color: #896417;
  119. font-style: italic;
  120. width: 50px;
  121. font-size: 12px;
  122. margin-right: 5px;
  123. }
  124. .value {
  125. color: $primary;
  126. }
  127. .unit {
  128. font-weight: bolder;
  129. color: #727272;
  130. }
  131. li.inactive {
  132. .marker {
  133. float: left;
  134. width: 4px;
  135. height: 34px;
  136. margin-right: 5px;
  137. background: rgb(163, 163, 163);
  138. }
  139. background: rgb(201, 199, 199);
  140. }
  141. .inactive-selected {
  142. background: rgb(220, 220, 220);
  143. }
  144. @media (max-width: 1320px){
  145. .fPermissions, .fOwner {
  146. display: none;
  147. }
  148. }