123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- /**
- * Style variables
- */
- $baseFontFamily: 'open_sanslight', 'Helvetica Neue', Helvetica, Arial, sans-serif;
- $toolbarFontSize: 1.9em;
- $hangupFontSize: 2em;
-
- /**
- * Size variables.
- */
- $defaultToolbarSize: 50px;
-
- // Video layout.
- $thumbnailIndicatorSize: 23px;
- $thumbnailIndicatorBorder: 0px;
- $thumbnailVideoMargin: 2px;
- $thumbnailToolbarHeight: 25px;
-
- /**
- * Color variables.
- */
- $defaultColor: #F1F1F1;
- $defaultSideBarFontColor: #44A5FF;
- $defaultDarkColor: #4F4F4F;
- $defaultBackground: #474747;
- $tooltipBg: rgba(0,0,0, 0.7);
-
- // Toolbar
- $toolbarSelectBackground: rgba(0, 0, 0, .6);
- $toolbarButtonToggled: #44A5FF;
-
- $toolbarBadgeBackground: #165ECC;
- $toolbarBadgeColor: #FFFFFF;
-
- // Main controls
- $inputBackground: rgba(132, 132, 132, .5);
- $inputSemiBackground: rgba(132, 132, 132, .8);
- $inputLightBackground: #EBEBEB;
- $inputBorderColor: #EBEBEB;
- $buttonBackground: #44A5FF;
-
- // Video layout.
- $videoThumbnailHovered: #44A5FF;
- $videoThumbnailSelected: #165ECC;
- $participantNameColor: #fff;
- $thumbnailPictogramColor: #fff;
- $dominantSpeakerBg: #165ecc;
- $raiseHandBg: #D6D61E;
-
- $rateStarDefault: #ccc;
- $rateStarActivity: #165ecc;
- $rateStarLabelColor: #333;
-
- /**
- * Misc.
- */
- $borderRadius: 4px;
- $defaultWatermarkLink: '../images/watermark.png';
-
- /**
- * Z-indexes. TODO: Replace this by a function.
- */
- $toolbarZ: 900;
- $overlayZ: 800;
-
- /**
- * Font Colors TODO: Change colors when general dialogs are implemented.
- */
- $defaultFontColor: #777;
- $defaultLightFontColor: #F1F1F1;
- $defaultDarkFontColor: #000;
- $buttonFontColor: #777;
- $buttonHoverFontColor: #287ade;
- $linkFontColor: #489afe;
- $linkHoverFontColor: #287ade;
|