_tabPanel.scss 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. .tab-panel {
  2. height:100%;
  3. overflow-y: auto;
  4. &.searchable {
  5. height:calc(100% - #{$searchbar-height} - 10px);
  6. }
  7. .texture-image {
  8. max-height:400px;
  9. }
  10. .scene-actions {
  11. overflow-y: auto;
  12. // Action title : Textures/Options/Viewer
  13. .actions-title {
  14. font-size : 1.1em;
  15. padding-bottom: 10px;
  16. border-bottom : 1px solid $color-bot;
  17. margin : 10px 0 10px 0;
  18. }
  19. .defaut-action {
  20. height : 20px;
  21. line-height: 20px;
  22. width : 100%;
  23. cursor : pointer;
  24. &:hover {
  25. background-color:$background-lighter;
  26. }
  27. &:active {
  28. background-color: $background-lighter2;
  29. }
  30. }
  31. // Radio button
  32. .action-radio {
  33. @extend .defaut-action;
  34. &:before {
  35. width : 1em;
  36. height : 1em;
  37. line-height: 1em;
  38. display : inline-block;
  39. font-family: 'FontAwesome', sans-serif;
  40. content : "\f10c";
  41. margin-right:10px;
  42. }
  43. // radio button active
  44. &.active {
  45. &:before {
  46. width : 1em;
  47. height : 1em;
  48. line-height: 1em;
  49. display : inline-block;
  50. font-family: 'FontAwesome', sans-serif;
  51. content : "\f192";
  52. color : $color-bot;
  53. margin-right:10px;
  54. }
  55. }
  56. }
  57. // Check button
  58. .action {
  59. @extend .defaut-action;
  60. &:before {
  61. width : 1em;
  62. height : 1em;
  63. line-height: 1em;
  64. display : inline-block;
  65. font-family: 'FontAwesome', sans-serif;
  66. content : "\f096";
  67. margin-right:10px;
  68. }
  69. &.active {
  70. &:before {
  71. width : 1em;
  72. height : 1em;
  73. line-height: 1em;
  74. display : inline-block;
  75. font-family: 'FontAwesome', sans-serif;
  76. content : "\f14a";
  77. color : $color-bot;
  78. margin-right:10px;
  79. }
  80. }
  81. }
  82. }
  83. }