// Common styles @import "../../../../common/embed/resources/less/common.less"; // Worksheets // ------------------------- .viewer { display: flex; flex-direction: column; .sdk-view { position: relative; flex-grow: 1; } .worksheet-list-container { display: flex; border-top: 1px solid #cacaca; background-color: #f7f7f7; .worksheet-list-buttons { display: flex; padding: 1px 12px; height: 24px; position: fixed; background: #f7f7f7; border-right: 1px solid #c0c0cd; } &.rtl-sheet .worksheet-list-buttons { border-left: 1px solid #c0c0cd; } @media screen and (min--moz-device-pixel-ratio:0) { scrollbar-color: #e8e8e8 #eeeeee; scrollbar-width: thin; } &::-webkit-scrollbar-thumb { height: 14px; border: #c0c0c0 1px solid; background-color: #e8e8e8; background-position: center; background-repeat: no-repeat; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13px' stroke ='rgb(173,173,173)' height='5px'>"); } &:horizontal:increment:hover, &:horizontal:increment:active { background-image: url("data:image/svg+xml;utf8,"); } &:horizontal:decrement { background-image: url("data:image/svg+xml;utf8,"); } &:horizontal:decrement:hover, &:horizontal:decrement:active { background-image: url("data:image/svg+xml;utf8,"); } } ul.worksheet-list { background-color: #F7F7F7; display: flex; padding: 0; margin: 0; white-space: nowrap; margin-left: 68px; li { display: inline-block; border-radius: 0; padding: 0 10px 0; line-height: 24px; margin-right: -1px; margin-left: 0; border-right: 1px solid #cacaca; border-left: 1px solid #cacaca; color: rgba(0, 0, 0, 0.8); font-size: 11px; cursor: pointer; letter-spacing: 0.01em; text-align: center; &.active { box-shadow: inset 0 4px 0 #49795d; background-color: #ffffff; color: #000; font-weight: bold; } &::after { content: attr(tabtitle); font-weight: bold; display: block; height: 0; color: transparent; } } } &.rtl-sheet ul.worksheet-list { margin-right: 68px; margin-left: 0; } } }