Path: blob/trunk/third_party/closure/goog/css/editortoolbar.css
2868 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*/678/*9* Editor toolbar styles.10*11* @author [email protected] (Attila Bodis)12*/1314/* Common base style for all icons. */15.tr-icon {16width: 16px;17height: 16px;18background: url(//ssl.gstatic.com/editor/editortoolbar.png) no-repeat;19vertical-align: middle;20}2122.goog-color-menu-button-indicator .tr-icon {23height: 14px;24}2526/* Undo (redo when the chrome is right-to-left). */27.tr-undo,28.goog-toolbar-button-rtl .tr-redo {29background-position: 0;30}3132/* Redo (undo when the chrome is right-to-left). */33.tr-redo,34.goog-toolbar-button-rtl .tr-undo {35background-position: -16px;36}3738/* Font name. */39.tr-fontName .goog-toolbar-menu-button-caption {40color: #246;41width: 16ex;42height: 16px;43overflow: hidden;44}4546/* Font size. */47.tr-fontSize .goog-toolbar-menu-button-caption {48color: #246;49width: 8ex;50height: 16px;51overflow: hidden;52}5354/* Bold. */55.tr-bold {56background-position: -32px;57}5859/* Italic. */60.tr-italic {61background-position: -48px;62}6364/* Underline. */65.tr-underline {66background-position: -64px;67}6869/* Foreground color. */70.tr-foreColor {71height: 14px;72background-position: -80px;73}7475/* Background color. */76.tr-backColor {77height: 14px;78background-position: -96px;79}8081/* Link. */82.tr-link {83font-weight: bold;84color: #009;85text-decoration: underline;86}8788/* Insert image. */89.tr-image {90background-position: -112px;91}9293/* Insert drawing. */94.tr-newDrawing {95background-position: -592px;96}9798/* Insert special character. */99.tr-spChar {100font-weight: bold;101color: #900;102}103104/* Increase indent. */105.tr-indent {106background-position: -128px;107}108109/* Increase ident in right-to-left text mode, regardless of chrome direction. */110.tr-rtl-mode .tr-indent {111background-position: -400px;112}113114/* Decrease indent. */115.tr-outdent {116background-position: -144px;117}118119/* Decrease indent in right-to-left text mode, regardless of chrome direction. */120.tr-rtl-mode .tr-outdent {121background-position: -416px;122}123124/* Bullet (unordered) list. */125.tr-insertUnorderedList {126background-position: -160px;127}128129/* Bullet list in right-to-left text mode, regardless of chrome direction. */130.tr-rtl-mode .tr-insertUnorderedList {131background-position: -432px;132}133134/* Number (ordered) list. */135.tr-insertOrderedList {136background-position: -176px;137}138139/* Number list in right-to-left text mode, regardless of chrome direction. */140.tr-rtl-mode .tr-insertOrderedList {141background-position: -448px;142}143144/* Text alignment buttons. */145.tr-justifyLeft {146background-position: -192px;147}148.tr-justifyCenter {149background-position: -208px;150}151.tr-justifyRight {152background-position: -224px;153}154.tr-justifyFull {155background-position: -480px;156}157158/* Blockquote. */159.tr-BLOCKQUOTE {160background-position: -240px;161}162163/* Blockquote in right-to-left text mode, regardless of chrome direction. */164.tr-rtl-mode .tr-BLOCKQUOTE {165background-position: -464px;166}167168/* Remove formatting. */169.tr-removeFormat {170background-position: -256px;171}172173/* Spellcheck. */174.tr-spell {175background-position: -272px;176}177178/* Left-to-right text direction. */179.tr-ltr {180background-position: -288px;181}182183/* Right-to-left text direction. */184.tr-rtl {185background-position: -304px;186}187188/* Insert iGoogle module. */189.tr-insertModule {190background-position: -496px;191}192193/* Strike through text */194.tr-strikeThrough {195background-position: -544px;196}197198/* Subscript */199.tr-subscript {200background-position: -560px;201}202203/* Superscript */204.tr-superscript {205background-position: -576px;206}207208/* Insert drawing. */209.tr-equation {210background-position: -608px;211}212213/* Edit HTML. */214.tr-editHtml {215color: #009;216}217218/* "Format block" menu. */219.tr-formatBlock .goog-toolbar-menu-button-caption {220color: #246;221width: 12ex;222height: 16px;223overflow: hidden;224}225226227