123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- /**
- * Toolbar side panel main container element.
- */
- #sideToolbarContainer {
- display: inline-block;
- position:absolute;
- top: 0px;
- left: $defaultToolbarSize;
- width: 0%;
- height: 100%;
- max-width: 200px;
- background-color: rgba(0,0,0,0.8);
- z-index: 800;
- overflow: hidden;
- letter-spacing: 1px;
-
- /**
- * Labels inside the side panel.
- */
- label {
- color: $defaultColor;
- }
-
- /**
- * Form elements and blocks.
- */
- input, label, select, button, a, .sideToolbarBlock {
- display: inline-block;
- margin-top: 15px;
- margin-left: 10%;
- width: 80%;
- }
-
- /**
- * Specify colors for edit elements.
- */
- select, input[type="button"], input[type="text"],
- input[type="reset"], input[type="submit"] {
- color: $defaultColor;
- background: $inputBackground;
- border: none;
- }
-
- /**
- * Specify styling of elements inside a block.
- */
- .sideToolbarBlock {
- input, label, button, a, select {
- margin-top: 5px;
- margin-left: 0;
- width: 100%;
- }
-
- .startMutedLabel,
- .followMeLabel {
- display: inline;
- margin-top: 0;
- }
- }
-
- /**
- * Inner container, for example contact list, settings or profile.
- */
- .sideToolbarContainer__inner {
- display: none;
- width: 200px;
- color: #FFF;
-
- /**
- * Titles and subtitles of inner containers.
- */
- > div.title,
- div.subTitle {
- text-align: left;
- margin: 10px 0px 10px 0px;
- }
-
- /**
- * Main title size.
- */
- > div.title {
- color: $defaultColor !important;
- text-align: center;
- font-size: 16px;
- }
-
- /**
- * Subtitle specific properties.
- */
- > div.subTitle {
- font-size: 11px;
- font-weight: 500;
- color: $defaultSideBarFontColor !important;
- margin-left: 10%;
- }
-
- /**
- * First element after a title.
- */
- .first {
- margin-top: 0px !important;
- }
- }
- }
-
- #device_settings {
- width : auto !important;
- text-align: center;
- }
-
- #startAudioMuted,
- #startVideoMuted,
- #followMeCheckBox {
- width: 13px !important;
- }
|