sink.scss 902 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. @import "compass";
  2. @import "accessories/all";
  3. $green: #81AF34;
  4. $lightblue: #E4EAED;
  5. .x-toolbar-sencha {
  6. @include background-image(linear-gradient(top, lighten($green, 5), darken($green, 5)));
  7. border-bottom: 1px solid darken($green, 15);
  8. .x-logo {
  9. padding: 10px 10px 10px 31px;
  10. background: url(../images/logo.png) no-repeat 10px 11px;
  11. color: #fff;
  12. font-size: 18px;
  13. font-weight: bold;
  14. text-shadow: 0 1px 0 darken(#5C7D25, 5);
  15. }
  16. }
  17. body > .x-panel > .x-panel-body {
  18. background: #E4EAED;
  19. }
  20. .x-grid-body {
  21. border-bottom: 0 !important;
  22. }
  23. //blueprint background on example container
  24. #examplePanel-body {
  25. @include background-pattern-blueprint(
  26. $bgcolor: $lightblue,
  27. $majorcolor: lighten($lightblue, 5),
  28. $majorwidth: 1px
  29. );
  30. }
  31. //rounded corners on the selected items on the examples tree
  32. .examples-list {
  33. .x-grid-cell,
  34. .x-grid-rowwrap-div {
  35. @include border-radius(4px);
  36. }
  37. }