You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_variables.scss 2.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. /**
  2. * Style variables
  3. */
  4. $baseFontFamily: 'open_sanslight', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  5. $toolbarFontSize: 1.9em;
  6. $hangupFontSize: 2em;
  7. /**
  8. * Size variables.
  9. */
  10. $defaultToolbarSize: 50px;
  11. // Video layout.
  12. $thumbnailToolbarHeight: 22px;
  13. $thumbnailIndicatorBorder: 0px;
  14. $thumbnailIndicatorSize: $thumbnailToolbarHeight;
  15. $thumbnailVideoMargin: 2px;
  16. /**
  17. * Color variables.
  18. */
  19. $defaultColor: #F1F1F1;
  20. $defaultSideBarFontColor: #44A5FF;
  21. $defaultSemiDarkColor: #ACACAC;
  22. $defaultDarkColor: #2b3d5c;
  23. $defaultBackground: #474747;
  24. $tooltipBg: rgba(0,0,0, 0.7);
  25. /**
  26. * Toolbar
  27. */
  28. $toolbarBackground: rgba(0, 0, 0, 0.5);
  29. $toolbarSelectBackground: rgba(0, 0, 0, .6);
  30. $toolbarBadgeBackground: #165ECC;
  31. $toolbarBadgeColor: #FFFFFF;
  32. $toolbarToggleBackground: #12499C;
  33. $splitterToolbarButtonLeftMargin: 0px;
  34. /*
  35. * Main controls
  36. * TODO: looks like we don't use it
  37. */
  38. $inputSemiBackground: rgba(132, 132, 132, .8);
  39. $inputLightBackground: #EBEBEB;
  40. /*
  41. * Video layout
  42. */
  43. $videoThumbnailHovered: rgba(22, 94, 204, .4);
  44. $videoThumbnailSelected: #165ECC;
  45. $participantNameColor: #fff;
  46. $thumbnailPictogramColor: #fff;
  47. $dominantSpeakerBg: #165ecc;
  48. $raiseHandBg: #D6D61E;
  49. $audioLevelBg: #44A5FF;
  50. $connectionIndicatorBg: #165ecc;
  51. $audioLevelShadow: rgba(9, 36, 77, 0.9);
  52. $videoStateIndicatorColor: $defaultColor;
  53. $videoStateIndicatorBackground: $toolbarBackground;
  54. /**
  55. * Feedback Modal
  56. */
  57. $feedbackContentBg: #fff;
  58. $feedbackInputBg: #fff;
  59. $feedbackTextColor: #000;
  60. $feedbackInputTextColor: #333;
  61. $feedbackInputPlaceholderColor: #777;
  62. $rateStarLabelColor: #333;
  63. $rateStarDefault: #ccc;
  64. $rateStarActivity: #165ecc;
  65. $rateStarSize: 34px;
  66. $feedbackCancelFontColor: #333;
  67. /**
  68. * Notifications
  69. */
  70. $notificationFontSize: 13px;
  71. $notificationColor: #FFFFFF;
  72. $notificationBackground: $tooltipBg;
  73. $notificationTitleColor: $notificationColor;
  74. $notificationMessageColor: $notificationColor;
  75. $notificationLinkColor: $notificationColor;
  76. $notificationOpacity: 0.9;
  77. $notificationPadding: 15px 20px;
  78. $notificationBorderRadius: 4px;
  79. /**
  80. * Misc.
  81. */
  82. $borderRadius: 4px;
  83. $defaultWatermarkLink: '../images/watermark.png';
  84. $sidebarWidth: 200px;
  85. /**
  86. * Z-indexes. TODO: Replace this by a function.
  87. */
  88. $tooltipsZ: 901;
  89. $toolbarZ: 900;
  90. $overlayZ: 902;
  91. $notificationZ: 1012;
  92. $ringingZ: 800;
  93. $dropdownZ: 901;
  94. $dropdownMaskZ: 900;
  95. /**
  96. * Font Colors
  97. */
  98. $defaultFontColor: #777;
  99. $defaultLightFontColor: #F1F1F1;
  100. $defaultDarkFontColor: #000;
  101. /**
  102. * Forms
  103. */
  104. //dropdown
  105. $selectFontColor: $defaultLightFontColor;
  106. $selectBg: $defaultBackground;
  107. $selectActiveBg: $defaultBackground;
  108. $selectActiveItemBg: $defaultDarkColor;
  109. //inputs
  110. $inputControlEmColor: #f29424;
  111. //buttons
  112. $linkFontColor: #489afe;
  113. $linkHoverFontColor: #287ade;