nested-loading.scss 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192
  1. $base-color: #ddd;
  2. $font-family: "Lucida Sans Unicode", "Lucida Grande", Verdana, Arial, Helvetica, sans-serif;
  3. @import 'compass';
  4. @import 'ext4/default/all';
  5. $highlight-background-color: #7b8b9d;
  6. $header-background-color: darken($highlight-background-color, 30);
  7. $sidebar-background-color: #eaeaea;
  8. $review-background-color: lighten($highlight-background-color, 20);
  9. /**
  10. * Application header
  11. */
  12. .app-header {
  13. padding: 10px;
  14. @include background-gradient($header-background-color, 'matte');
  15. color: #fff;
  16. font-size: 16px;
  17. font-weight: bold;
  18. text-align: center;
  19. text-shadow: 0 1px 0 darken($header-background-color, 15);
  20. border-bottom: 1px solid darken($header-background-color, 15) !important;
  21. }
  22. //for browsers that dont support linear gradients
  23. .x-nlg {
  24. .app-header {
  25. background: url(../images/legacy/header-bg.png) repeat-x;
  26. }
  27. }
  28. /**
  29. * Sidebar
  30. */
  31. .sidebar-list {
  32. .product {
  33. cursor: pointer;
  34. }
  35. //border-right: 1px solid $panel-border-color !important;
  36. background: $sidebar-background-color;
  37. .x-item-selected {
  38. color: #fff;
  39. font-weight: bold;
  40. text-shadow: 0 1px 0 darken($highlight-background-color, 20);
  41. border-color: $highlight-background-color;
  42. @include background-gradient($highlight-background-color, 'matte');
  43. }
  44. }
  45. //for browsers that dont support linear gradients
  46. .x-nlg {
  47. .sidebar-list {
  48. .x-item-selected {
  49. background: url(../images/legacy/sidebar-selected-bg.png) repeat-x;
  50. }
  51. }
  52. }
  53. .sidebar-title {
  54. color: #666;
  55. font-size: 11px;
  56. font-weight: bold;
  57. text-transform: uppercase;
  58. text-shadow: 0 1px 0 lighten(#e8ecf1, 10);
  59. padding: 5px;
  60. }
  61. .product {
  62. border-width: 1px 0;
  63. border-style: solid;
  64. border-color: $sidebar-background-color;
  65. padding: 3px 10px;
  66. font-size: 12px;
  67. }
  68. /**
  69. * Reviews
  70. */
  71. .review-list {
  72. @include background-gradient($review-background-color, 'recessed');
  73. border: 1px solid darken($review-background-color, 10);
  74. color: darken($highlight-background-color, 40);
  75. font-size: 12px;
  76. padding: 0;
  77. .review-title {
  78. color: lighten($highlight-background-color, 40);
  79. font-size: 20px;
  80. text-shadow: 0 1px 0 darken($review-background-color, 10);
  81. @include background-gradient($header-background-color, 'matte');
  82. padding: 10px;
  83. span {
  84. color: lighten($highlight-background-color, 2);
  85. }
  86. }
  87. .review {
  88. margin: 10px;
  89. padding: 10px;
  90. background: lighten($review-background-color, 20);
  91. line-height: 18px;
  92. .title {
  93. font-size: 13px;
  94. font-weight: bold;
  95. img {
  96. position: relative;
  97. top: 1px;
  98. margin-right: 1px;
  99. }
  100. }
  101. .author {
  102. color: darken($highlight-background-color, 30);
  103. font-size: 11px;
  104. margin-bottom: 5px;
  105. span {
  106. color: darken($highlight-background-color, 40);
  107. font-weight: bold;
  108. }
  109. }
  110. }
  111. }
  112. /**
  113. *
  114. */
  115. .item-ct {
  116. table {
  117. margin: 50px auto;
  118. }
  119. .img {
  120. padding-right: 10px;
  121. margin-right: 10px;
  122. border-right: 1px solid $panel-border-color;
  123. text-align: right;
  124. }
  125. .name {
  126. font-size: 28px;
  127. font-weight: bold;
  128. text-wrap: nowrap;
  129. span {
  130. color: $highlight-background-color;
  131. }
  132. }
  133. .author {
  134. color: #333;
  135. font-size: 18px;
  136. border-bottom: 1px solid #eaeaea;
  137. padding-bottom: 10px;
  138. margin-bottom: 10px;
  139. span {
  140. color: #000;
  141. }
  142. }
  143. }