Path: blob/trunk/third_party/closure/goog/css/editortoolbar.css
4012 views
/*1* Copyright 2008 The Closure Library Authors. All Rights Reserved.2*3* Use of this source code is governed by the Apache License, Version 2.0.4* See the COPYING file for details.5*/67/*8* Editor toolbar styles.9*/1011@provide 'goog.css.editortoolbar';1213/* Common base style for all icons. */14.tr-icon {15width: 16px;16height: 16px;17background: url(//ssl.gstatic.com/editor/editortoolbar.png) no-repeat;18vertical-align: middle;19}2021.goog-color-menu-button-indicator .tr-icon {22height: 14px;23}2425/* Undo (redo when the chrome is right-to-left). */26.tr-undo,27.goog-toolbar-button-rtl .tr-redo {28background-position: 0;29}3031/* Redo (undo when the chrome is right-to-left). */32.tr-redo,33.goog-toolbar-button-rtl .tr-undo {34background-position: -16px;35}3637/* Font name. */38.tr-fontName .goog-toolbar-menu-button-caption {39color: #246;40width: 16ex;41height: 16px;42overflow: hidden;43}4445/* Font size. */46.tr-fontSize .goog-toolbar-menu-button-caption {47color: #246;48width: 8ex;49height: 16px;50overflow: hidden;51}5253/* Bold. */54.tr-bold {55background-position: -32px;56}5758/* Italic. */59.tr-italic {60background-position: -48px;61}6263/* Underline. */64.tr-underline {65background-position: -64px;66}6768/* Foreground color. */69.tr-foreColor {70height: 14px;71background-position: -80px;72}7374/* Background color. */75.tr-backColor {76height: 14px;77background-position: -96px;78}7980/* Link. */81.tr-link {82font-weight: bold;83color: #009;84text-decoration: underline;85}8687/* Insert image. */88.tr-image {89background-position: -112px;90}9192/* Insert drawing. */93.tr-newDrawing {94background-position: -592px;95}9697/* Insert special character. */98.tr-spChar {99font-weight: bold;100color: #900;101}102103/* Increase indent. */104.tr-indent {105background-position: -128px;106}107108/* Increase ident in right-to-left text mode, regardless of chrome direction. */109.tr-rtl-mode .tr-indent {110background-position: -400px;111}112113/* Decrease indent. */114.tr-outdent {115background-position: -144px;116}117118/* Decrease indent in right-to-left text mode, regardless of chrome direction. */119.tr-rtl-mode .tr-outdent {120background-position: -416px;121}122123/* Bullet (unordered) list. */124.tr-insertUnorderedList {125background-position: -160px;126}127128/* Bullet list in right-to-left text mode, regardless of chrome direction. */129.tr-rtl-mode .tr-insertUnorderedList {130background-position: -432px;131}132133/* Number (ordered) list. */134.tr-insertOrderedList {135background-position: -176px;136}137138/* Number list in right-to-left text mode, regardless of chrome direction. */139.tr-rtl-mode .tr-insertOrderedList {140background-position: -448px;141}142143/* Text alignment buttons. */144.tr-justifyLeft {145background-position: -192px;146}147.tr-justifyCenter {148background-position: -208px;149}150.tr-justifyRight {151background-position: -224px;152}153.tr-justifyFull {154background-position: -480px;155}156157/* Blockquote. */158.tr-BLOCKQUOTE {159background-position: -240px;160}161162/* Blockquote in right-to-left text mode, regardless of chrome direction. */163.tr-rtl-mode .tr-BLOCKQUOTE {164background-position: -464px;165}166167/* Remove formatting. */168.tr-removeFormat {169background-position: -256px;170}171172/* Spellcheck. */173.tr-spell {174background-position: -272px;175}176177/* Left-to-right text direction. */178.tr-ltr {179background-position: -288px;180}181182/* Right-to-left text direction. */183.tr-rtl {184background-position: -304px;185}186187/* Insert iGoogle module. */188.tr-insertModule {189background-position: -496px;190}191192/* Strike through text */193.tr-strikeThrough {194background-position: -544px;195}196197/* Subscript */198.tr-subscript {199background-position: -560px;200}201202/* Superscript */203.tr-superscript {204background-position: -576px;205}206207/* Insert drawing. */208.tr-equation {209background-position: -608px;210}211212/* Edit HTML. */213.tr-editHtml {214color: #009;215}216217/* "Format block" menu. */218.tr-formatBlock .goog-toolbar-menu-button-caption {219color: #246;220width: 12ex;221height: 16px;222overflow: hidden;223}224225226