| Index: Source/devtools/blink/chromeServerProfile/Default/Cache/f_000038
|
| diff --git a/Source/devtools/front_end/inspector.css b/Source/devtools/blink/chromeServerProfile/Default/Cache/f_000038
|
| similarity index 79%
|
| copy from Source/devtools/front_end/inspector.css
|
| copy to Source/devtools/blink/chromeServerProfile/Default/Cache/f_000038
|
| index a045219bcac9e4b12bb0b85de6fbe88f9f2b66d7..f05080f010c34bf1cf4c0c6b2c8657dd646e4134 100644
|
| --- a/Source/devtools/front_end/inspector.css
|
| +++ b/Source/devtools/blink/chromeServerProfile/Default/Cache/f_000038
|
| @@ -1,3 +1,215 @@
|
| +/* dialog.css */
|
| +
|
| +.dialog {
|
| + position: absolute;
|
| +
|
| + padding: 10px;
|
| + border-radius: 10px;
|
| + border: 1px solid gray;
|
| +
|
| + box-shadow: rgb(40,40,40) 0 0 50px;
|
| +
|
| + display: -webkit-flex;
|
| + -webkit-flex-direction: column;
|
| +
|
| + background-image: linear-gradient(to bottom, #E9E9E9, #CFCFCF);
|
| +}
|
| +
|
| +.dialog-contents {
|
| + width: 100%;
|
| +}
|
| +
|
| +.go-to-line-dialog {
|
| + font-size: 11px;
|
| + font-family: 'Lucida Grande', sans-serif;
|
| +}
|
| +
|
| +.go-to-line-dialog input {
|
| + font-size: 11px;
|
| +}
|
| +
|
| +.go-to-line-dialog button {
|
| + font-size: 11px;
|
| + color: rgb(6, 6, 6);
|
| + border: 1px solid rgb(165, 165, 165);
|
| + background-color: rgb(237, 237, 237);
|
| + background-image: linear-gradient(to bottom, rgb(252, 252, 252), rgb(223, 223, 223));
|
| + border-radius: 12px;
|
| + -webkit-appearance: none;
|
| +
|
| + padding: 3px 20px;
|
| + margin: 0 0 0 10px;
|
| +}
|
| +
|
| +.go-to-line-dialog button:active {
|
| + background-color: rgb(215, 215, 215);
|
| + background-image: linear-gradient(to bottom, rgb(194, 194, 194), rgb(239, 239, 239));
|
| +}
|
| +
|
| +
|
| +/* tabbedPane.css */
|
| +
|
| +/*
|
| + * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved.
|
| + * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org>
|
| + * Copyright (C) 2011 Google Inc. All rights reserved.
|
| + *
|
| + * Redistribution and use in source and binary forms, with or without
|
| + * modification, are permitted provided that the following conditions are
|
| + * met:
|
| + *
|
| + * 1. Redistributions of source code must retain the above copyright
|
| + * notice, this list of conditions and the following disclaimer.
|
| + *
|
| + * 2. Redistributions in binary form must reproduce the above
|
| + * copyright notice, this list of conditions and the following disclaimer
|
| + * in the documentation and/or other materials provided with the
|
| + * distribution.
|
| + *
|
| + * THIS SOFTWARE IS PROVIDED BY GOOGLE INC. AND ITS CONTRIBUTORS
|
| + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
| + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
| + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GOOGLE INC.
|
| + * OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
| + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
| + * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
| + * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
| + * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
| + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
| + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
| + */
|
| +
|
| +.tabbed-pane {
|
| + flex: auto;
|
| + overflow: hidden;
|
| +}
|
| +
|
| +.tabbed-pane-content {
|
| + position: relative;
|
| + overflow: auto;
|
| + flex: auto;
|
| + display: flex;
|
| + flex-direction: column;
|
| +}
|
| +
|
| +.tabbed-pane-content.has-no-tabs {
|
| + background-color: lightgray;
|
| +}
|
| +
|
| +.tabbed-pane-placeholder {
|
| + font-size: 14px;
|
| + text-align: center;
|
| + margin-top: 20px;
|
| + text-shadow: rgba(255, 255, 255, 0.75) 0 1px 0;
|
| +}
|
| +
|
| +.tabbed-pane-header {
|
| + flex: 0 0 23px;
|
| + border-bottom: 1px solid rgb(163, 163, 163);
|
| + overflow: hidden;
|
| + width: 100%;
|
| +}
|
| +
|
| +.tabbed-pane-header-contents {
|
| + margin: 0 10px;
|
| +}
|
| +
|
| +.tabbed-pane-header-tabs {
|
| + float: left;
|
| +}
|
| +
|
| +.tabbed-pane-header-tab {
|
| + float: left;
|
| + margin-top: 2px;
|
| + padding: 2px 4px 2px 4px;
|
| + height: 21px;
|
| + border: 1px solid transparent;
|
| + border-bottom: none;
|
| + line-height: 15px;
|
| + white-space: nowrap;
|
| + text-overflow: ellipsis;
|
| + overflow: hidden;
|
| + cursor: default;
|
| +}
|
| +
|
| +.tabbed-pane-header-tab.measuring {
|
| + visibility: hidden;
|
| +}
|
| +
|
| +.tabbed-pane-header-tab.selected {
|
| + border: 1px solid rgb(163, 163, 163);
|
| + border-bottom: none;
|
| +}
|
| +
|
| +.tabbed-pane-header-tab.selected {
|
| + background: white;
|
| + border-top-color: #bbb;
|
| +}
|
| +
|
| +.tabbed-pane-header-tab .close-button-gray {
|
| + position: relative;
|
| + top: 2px;
|
| + left: 1px;
|
| + margin-left: 2px;
|
| + margin-top: -3px;
|
| + visibility: hidden;
|
| +}
|
| +
|
| +.tabbed-pane-header-tab:hover .close-button-gray,
|
| +.tabbed-pane-header-tab.selected .close-button-gray {
|
| + visibility: visible;
|
| +}
|
| +
|
| +.tabbed-pane-header-tab-icon {
|
| + width: 11px;
|
| + height: 10px;
|
| + margin-top: 3px;
|
| + float: left;
|
| + display: block;
|
| + margin-right: 1px;
|
| +}
|
| +
|
| +.tabbed-pane-header-tabs-drop-down-container {
|
| + float: left;
|
| + position: relative;
|
| + vertical-align: bottom;
|
| + padding-left: 3px;
|
| + line-height: 20px;
|
| +}
|
| +
|
| +.tabbed-pane-header-tabs-drop-down-container.measuring {
|
| + visibility: hidden;
|
| +}
|
| +
|
| +.tabbed-pane-header-tabs-drop-down {
|
| + position: relative;
|
| + opacity: 0.7;
|
| + color: rgb(30, 30, 30);
|
| + font-size: 133%;
|
| + padding: 0 3px;
|
| +}
|
| +
|
| +.tabbed-pane-header-tabs-drop-down:hover {
|
| + opacity: 1.0;
|
| +}
|
| +
|
| +.tabbed-pane-header-tabs-drop-down:active {
|
| + opacity: 0.8;
|
| +}
|
| +
|
| +.tabbed-pane-header-tabs-drop-down > select.drop-down-menu {
|
| + position: absolute;
|
| + top: 0;
|
| + right: 0;
|
| + bottom: 0;
|
| + left: 0;
|
| + opacity: 0;
|
| + font-size: 75%;
|
| + width: 20px;
|
| +}
|
| +
|
| +/* inspector.css */
|
| +
|
| /*
|
| * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved.
|
| * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org>
|
| @@ -2867,3 +3079,487 @@ select.drop-down-menu {
|
| border: none;
|
| -webkit-appearance: none;
|
| }
|
| +
|
| +/* inspectorCommon.css */
|
| +
|
| +html {
|
| + height: 100%;
|
| +}
|
| +
|
| +body {
|
| + cursor: default;
|
| + position: relative;
|
| + height: 100%;
|
| + width: 100%;
|
| + overflow: hidden;
|
| + font-family: Lucida Grande, sans-serif;
|
| + font-size: 12px;
|
| + margin: 0;
|
| + tab-size: 4;
|
| + -webkit-user-select: none;
|
| + color: #222;
|
| +}
|
| +
|
| +body.platform-linux {
|
| + color: rgb(48, 57, 66);
|
| + font-family: Ubuntu, Arial, sans-serif;
|
| +}
|
| +
|
| +body.platform-mac {
|
| + color: rgb(48, 57, 66);
|
| + font-family: 'Lucida Grande', sans-serif;
|
| +}
|
| +
|
| +body.platform-windows {
|
| + font-family: 'Segoe UI', Tahoma, sans-serif;
|
| +}
|
| +
|
| +*, *::before, *::after {
|
| + box-sizing: border-box;
|
| +}
|
| +
|
| +:focus {
|
| + outline: none;
|
| +}
|
| +
|
| +img {
|
| + -webkit-user-drag: none;
|
| +}
|
| +
|
| +iframe,
|
| +a img {
|
| + border: none;
|
| +}
|
| +
|
| +iframe.view {
|
| + position: absolute;
|
| + width: 100%;
|
| + height: 100%;
|
| + left: 0;
|
| + right: 0;
|
| + top: 0;
|
| + bottom: 0;
|
| +}
|
| +
|
| +.hidden {
|
| + display: none !important;
|
| +}
|
| +
|
| +.monospace {
|
| + font-size: 10px !important;
|
| + font-family: monospace;
|
| +}
|
| +
|
| +.resources-dividers {
|
| + position: absolute;
|
| + left: 0;
|
| + right: 0;
|
| + top: 0;
|
| + z-index: -100;
|
| + bottom: 0;
|
| +}
|
| +
|
| +.resources-event-dividers {
|
| + position: absolute;
|
| + left: 0;
|
| + right: 0;
|
| + height: 100%;
|
| + top: 0;
|
| + z-index: 300;
|
| + pointer-events: none;
|
| +}
|
| +
|
| +.resources-dividers-label-bar {
|
| + position: absolute;
|
| + top: 0;
|
| + left: 0;
|
| + right: 0;
|
| + background-color: rgba(255, 255, 255, 0.85);
|
| + background-clip: padding-box;
|
| + height: 20px;
|
| + z-index: 200;
|
| + pointer-events: none;
|
| + overflow: hidden;
|
| +}
|
| +
|
| +.resources-divider {
|
| + position: absolute;
|
| + width: 1px;
|
| + top: 0;
|
| + bottom: 0;
|
| + background-color: rgba(0, 0, 0, 0.1);
|
| +}
|
| +
|
| +.resources-event-divider-padding {
|
| + position: absolute;
|
| + width: 8px;
|
| + top: 0;
|
| + bottom: 0;
|
| + pointer-events: auto;
|
| +}
|
| +
|
| +.resources-event-divider {
|
| + position: absolute;
|
| + width: 2px;
|
| + top: 0;
|
| + bottom: 0;
|
| + z-index: 300;
|
| +}
|
| +
|
| +.resources-divider-label {
|
| + position: absolute;
|
| + top: 4px;
|
| + right: 3px;
|
| + font-size: 80%;
|
| + white-space: nowrap;
|
| + pointer-events: none;
|
| +}
|
| +
|
| +.overview-grid-window-selector {
|
| + position: absolute;
|
| + top: 0;
|
| + bottom: 0;
|
| + background-color: rgba(125, 173, 217, 0.5);
|
| + z-index: 250;
|
| + pointer-events: none;
|
| +}
|
| +
|
| +.overview-grid-window {
|
| + background-color: white;
|
| + position: absolute;
|
| + left: 0;
|
| + right: 0;
|
| + top: 0;
|
| + height: 20px;
|
| + z-index: 150;
|
| +}
|
| +
|
| +.overview-grid-dividers-background {
|
| + left: 0%;
|
| + right: 0%;
|
| + top: 0;
|
| + height: 20px;
|
| + background-color: black;
|
| + position: absolute;
|
| +}
|
| +
|
| +.overview-grid-window-rulers {
|
| + top: 0;
|
| + bottom: 0;
|
| + position: absolute;
|
| + opacity: 0.2;
|
| + border-right: 1px solid black;
|
| + border-left: 1px solid black;
|
| + z-index: 250;
|
| + pointer-events: none;
|
| +}
|
| +
|
| +.overview-grid-window-resizer {
|
| + position: absolute;
|
| + top: 0;
|
| + height: 20px;
|
| + width: 5px;
|
| + margin-left: -2px;
|
| + margin-right: -3px;
|
| + background-color: rgb(153, 153, 153);
|
| + z-index: 500;
|
| + border-radius: 2px;
|
| + box-shadow: white 1px 0 0, white -1px 0 0, white 0 1px 0, white 0 -1px 0;
|
| +}
|
| +
|
| +.overview-grid-window-resizer-right {
|
| + margin-left: -3px;
|
| + margin-right: -2px;
|
| +}
|
| +
|
| +/* Network timing is shared between popover and network item view pane */
|
| +
|
| +.network-timing-table td {
|
| + padding: 0;
|
| +}
|
| +
|
| +.network-timing-table td.caution {
|
| + font-weight: bold;
|
| + color: rgb(255, 128, 0);
|
| + padding: 2px 0;
|
| +}
|
| +
|
| +.network-timing-row {
|
| + position: relative;
|
| + height: 16px;
|
| +}
|
| +
|
| +.network-timing-bar {
|
| + position: absolute;
|
| + background-color: red;
|
| + border-left: 1px solid red;
|
| + opacity: 0.4;
|
| + top: 0;
|
| + bottom: 0;
|
| +}
|
| +
|
| +.network-timing-bar-title {
|
| + position: absolute;
|
| + color: #222;
|
| + top: 1px;
|
| +}
|
| +
|
| +.highlighted-search-result {
|
| + border-radius: 1px;
|
| + padding: 1px;
|
| + margin: -1px;
|
| + background-color: rgba(255, 255, 0, 0.8);
|
| +}
|
| +
|
| +.sidebar-separator {
|
| + background-color: rgb(230, 230, 230);
|
| + padding: 0 5px;
|
| + border-top: 1px solid rgb(189, 189, 189);
|
| + border-bottom: 1px solid rgb(189, 189, 189);
|
| + color: rgb(50, 50, 50);
|
| + white-space: nowrap;
|
| + text-overflow: ellipsis;
|
| + overflow: hidden;
|
| + line-height: 16px;
|
| +}
|
| +
|
| +.sidebar-label {
|
| + font-size: 11px;
|
| +}
|
| +
|
| +.pie-chart {
|
| + position: relative;
|
| +}
|
| +
|
| +.pie-chart-foreground {
|
| + position: absolute;
|
| + width: 100%;
|
| + height: 100%;
|
| + text-align: center;
|
| + z-index: 10;
|
| + top: 0;
|
| +}
|
| +
|
| +/* inspectorSyntaxHighlight.css */
|
| +
|
| +/*
|
| + * Copyright (C) 2009 Apple Inc. All rights reserved.
|
| + *
|
| + * Redistribution and use in source and binary forms, with or without
|
| + * modification, are permitted provided that the following conditions
|
| + * are met:
|
| + *
|
| + * 1. Redistributions of source code must retain the above copyright
|
| + * notice, this list of conditions and the following disclaimer.
|
| + * 2. Redistributions in binary form must reproduce the above copyright
|
| + * notice, this list of conditions and the following disclaimer in the
|
| + * documentation and/or other materials provided with the distribution.
|
| + * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of
|
| + * its contributors may be used to endorse or promote products derived
|
| + * from this software without specific prior written permission.
|
| + *
|
| + * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
|
| + * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
| + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
| + * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
|
| + * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
| + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
| + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
| + * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
| + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
| + * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
| + */
|
| +.cm-js-keyword {color: rgb(170, 13, 145);}
|
| +.cm-js-number {color: rgb(28, 0, 207);}
|
| +.cm-js-comment {color: rgb(0, 116, 0);}
|
| +.cm-js-string {color: rgb(196, 26, 22);}
|
| +.cm-js-string-2 {color: rgb(196, 26, 22);}
|
| +
|
| +.cm-css-keyword { color: rgb(7, 144, 154);}
|
| +.cm-css-number {color: rgb(50, 0, 255);}
|
| +.cm-css-comment {color: rgb(0, 116, 0);}
|
| +.cm-css-def {color: rgb(200, 0, 0);}
|
| +.cm-css-meta {color: rgb(200, 0, 0);}
|
| +.cm-css-atom {color: rgb(7, 144, 154);}
|
| +.cm-css-string {color: rgb(7, 144, 154);}
|
| +.cm-css-string-2 {color: rgb(7, 144, 154);}
|
| +.cm-css-link {color: rgb(7, 144, 154);}
|
| +.cm-css-variable {color: rgb(200, 0, 0);}
|
| +.cm-css-variable-2 {color: rgb(0, 0, 128);}
|
| +.cm-css-property, .webkit-css-property {color: rgb(200, 0, 0);}
|
| +
|
| +.cm-xml-meta {color: rgb(192, 192, 192);}
|
| +.cm-xml-comment {color: rgb(35, 110, 37);}
|
| +.cm-xml-string {color: rgb(26, 26, 166);}
|
| +.cm-xml-tag {color: rgb(136, 18, 128);}
|
| +.cm-xml-attribute {color: rgb(153, 69, 0);}
|
| +.cm-xml-link {color: #00e;}
|
| +
|
| +.webkit-html-comment {
|
| + /* Keep this in sync with view-source.css (.webkit-html-comment) */
|
| + color: rgb(35, 110, 37);
|
| +}
|
| +
|
| +.webkit-html-tag {
|
| + /* Keep this in sync with view-source.css (.webkit-html-tag) */
|
| + color: rgb(136, 18, 128);
|
| +}
|
| +
|
| +.webkit-html-pseudo-element {
|
| + /* This one is non-standard. */
|
| + color: brown;
|
| +}
|
| +
|
| +.webkit-html-text-node {
|
| + unicode-bidi: -webkit-isolate;
|
| +}
|
| +
|
| +.webkit-html-entity-value {
|
| + /* This one is non-standard. */
|
| + background-color: rgba(0, 0, 0, 0.15);
|
| + unicode-bidi: -webkit-isolate;
|
| +}
|
| +
|
| +.webkit-html-doctype {
|
| + /* Keep this in sync with view-source.css (.webkit-html-doctype) */
|
| + color: rgb(192, 192, 192);
|
| +}
|
| +
|
| +.webkit-html-attribute-name {
|
| + /* Keep this in sync with view-source.css (.webkit-html-attribute-name) */
|
| + color: rgb(153, 69, 0);
|
| + unicode-bidi: -webkit-isolate;
|
| +}
|
| +
|
| +.webkit-html-attribute-value {
|
| + /* Keep this in sync with view-source.css (.webkit-html-attribute-value) */
|
| + color: rgb(26, 26, 166);
|
| + unicode-bidi: -webkit-isolate;
|
| +}
|
| +
|
| +.webkit-html-external-link,
|
| +.webkit-html-resource-link {
|
| + /* Keep this in sync with view-source.css (.webkit-html-external-link, .webkit-html-resource-link) */
|
| + color: #00e;
|
| +}
|
| +
|
| +.webkit-html-resource-link {
|
| + /* Required for consistency with view-source.css, since anchors may not have href attributes */
|
| + text-decoration: underline;
|
| + cursor: pointer;
|
| +}
|
| +
|
| +.webkit-html-external-link {
|
| + /* Keep this in sync with view-source.css (.webkit-html-external-link) */
|
| + text-decoration: none;
|
| +}
|
| +
|
| +.webkit-html-external-link:hover {
|
| + /* Keep this in sync with view-source.css (.webkit-html-external-link:hover) */
|
| + text-decoration: underline;
|
| +}
|
| +
|
| +.webkit-html-end-of-file {
|
| + /* Keep this in sync with view-source.css (.webkit-html-end-of-file) */
|
| + color: rgb(255, 0, 0);
|
| + font-weight: bold;
|
| +}
|
| +
|
| +/* popover.css */
|
| +
|
| +.popover {
|
| + position: absolute;
|
| + -webkit-border-image: url(Images/popoverBackground.png) 25 25 25 25;
|
| + border-width: 25px;
|
| + z-index: 600;
|
| + pointer-events: none;
|
| +}
|
| +
|
| +.popover .content {
|
| + position: absolute;
|
| + top: 0;
|
| + bottom: 0;
|
| + left: 0;
|
| + right: 0;
|
| + pointer-events: auto;
|
| + overflow: auto;
|
| + -webkit-user-select: text;
|
| + line-height: 11px;
|
| +}
|
| +
|
| +.popover .content.fixed-height {
|
| + overflow: hidden;
|
| +}
|
| +
|
| +.popover .arrow {
|
| + position: absolute;
|
| + background-image: url(Images/popoverArrows.png);
|
| + width: 19px;
|
| + height: 19px;
|
| + margin-left: 15px;
|
| + margin-top: -25px;
|
| + top: 0;
|
| + left: 0;
|
| +}
|
| +
|
| +.popover.top-left-arrow .arrow {
|
| + /* The default is top-left, no styles needed. */
|
| +}
|
| +
|
| +.popover.top-right-arrow .arrow {
|
| + right: 25px;
|
| + left: auto;
|
| +}
|
| +
|
| +.popover.bottom-left-arrow .arrow {
|
| + top: auto;
|
| + bottom: 0;
|
| + margin-top: 0;
|
| + margin-bottom: -25px;
|
| + background-position: 0 -19px;
|
| +}
|
| +
|
| +.popover.bottom-right-arrow .arrow {
|
| + right: 15px;
|
| + left: auto;
|
| + top: auto;
|
| + bottom: 0;
|
| + margin-top: 0;
|
| + margin-bottom: -25px;
|
| + background-position: 0 -19px;
|
| +}
|
| +
|
| +.popover.left-top-arrow .arrow {
|
| + top: 0;
|
| + margin-top: 15px;
|
| + margin-left: -25px;
|
| + background-position: 0 -38px;
|
| +}
|
| +
|
| +.popover.left-bottom-arrow .arrow {
|
| + top: auto;
|
| + bottom: 0;
|
| + margin-bottom: 15px;
|
| + margin-left: -25px;
|
| + background-position: 0 -38px;
|
| +}
|
| +
|
| +.popover.right-top-arrow .arrow {
|
| + right: 0;
|
| + left: auto;
|
| + top: 0;
|
| + margin-top: 15px;
|
| + margin-right: -25px;
|
| + background-position: 0 -57px;
|
| +}
|
| +
|
| +.popover.right-bottom-arrow .arrow {
|
| + right: 0;
|
| + left: auto;
|
| + top: auto;
|
| + bottom: 0;
|
| + margin-bottom: 15px;
|
| + margin-right: -25px;
|
| + background-position: 0 -57px;
|
| +}
|
| +
|
|
|