From af56b68e030085aa523152e83811705636ead79c Mon Sep 17 00:00:00 2001 From: asgar Date: Fri, 8 Mar 2019 19:52:33 +0530 Subject: added ansible server functionality multiple ansible server for CDT Issue-ID: APPC-1510 Change-Id: I383bc63705418654efb596c617309821ebbeb9b4 Signed-off-by: Mohamed Asgar Samiulla --- src/styles.css | 71 +++++++++++++++++++++++++++++++++++++++------------------- 1 file changed, 48 insertions(+), 23 deletions(-) (limited to 'src/styles.css') diff --git a/src/styles.css b/src/styles.css index 57ba1f2..79755b7 100644 --- a/src/styles.css +++ b/src/styles.css @@ -17,7 +17,6 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. -ECOMP is a trademark and service mark of AT&T Intellectual Property. ============LICENSE_END============================================ */ input[type=text], @@ -69,6 +68,7 @@ body { margin: 0; } + /* Disable ugly boxes around images in IE10 */ a img { @@ -147,17 +147,35 @@ a img { z-index: 20 } +.undoMarker { + position: absolute; + background: #272822; + z-index: 30 +} + .noKeyedMarker { position: absolute; background: orange; z-index: 20 } +.ace_editor .ace_marker-layer .ace_selection { + background:blue !important; +} + .defaultMarker { position: absolute; background: lightgreen; z-index: 20; } +.ace_cursor{ + background-color: transparent; + +} +.ace-monokai{ + color: greenyellow; + +} .android-header { overflow: visible; @@ -198,7 +216,7 @@ a img { width: 800px; } -.android-search-box.is-focused + .android-navigation-container { +.android-search-box.is-focused+.android-navigation-container { opacity: 0; width: 100px; } @@ -436,9 +454,6 @@ a img { padding-bottom: 24px; } -.android-card-container { -} - .android-card-container .mdl-card__media { overflow: hidden; background: transparent; @@ -508,17 +523,16 @@ a img { cursor: pointer; } + /**** Mobile layout ****/ @media (max-width: 900px) { .android-navigation-container { display: none; } - .android-title { display: none !important; } - .android-mobile-title { display: block !important; position: absolute; @@ -526,66 +540,77 @@ a img { top: 12px; transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1); } - /* WebViews in iOS 9 break the "~" operator, and WebViews in OS X 10.10 break consecutive "+" operators in some cases. Therefore, we need to use both here to cover all the bases. */ - .android.android-search-box.is-focused ~ .android-mobile-title, - .android-search-box.is-focused + .android-navigation-container + .android-mobile-title { + .android.android-search-box.is-focused~.android-mobile-title, + .android-search-box.is-focused+.android-navigation-container+.android-mobile-title { opacity: 0; } - .android-more-button { display: none; } - .android-search-box.is-focused { width: calc(100% - 48px); } - .android-search-box .mdl-textfield__expandable-holder { width: 100%; } - .android-be-together-section { height: 350px; } - .android-slogan { font-size: 26px; margin: 0 16px; padding-top: 24px; } - .android-sub-slogan { font-size: 16px; margin: 0 16px; padding-top: 8px; } - .android-create-character { padding-top: 200px; font-size: 16px; } - .android-create-character img { height: 12px; } - .android-fab { display: none; } - .android-wear-band-text { margin-left: 0; padding: 16px; } - .android-footer .mdl-mega-footer--bottom-section { display: none; } } -input[type=text]:readonly { - background: #e0dada; +input[type=text]:read-only { + background: #d8d4d4; +} + +.nav-tabs .nav-item .nav-link { + color: #000000; +} + +#versionLog .modal-dialog { + width: 100%; + max-width: 800px; +} + +/* Overriding Ng2-Bs3-Modal css */ +.modal-header { + flex-direction: row-reverse; +} + +/* Overriding ng2-bootstrap-modal css ( Confirmation Modal ) */ +dialog-wrapper .modal { + background-color: rgba(0, 0, 0, 0.288); +} + +dialog-wrapper .modal-dialog .modal-content { + box-shadow: 0 11px 15px -7px rgba(0,0,0,.2), 0 24px 38px 3px rgba(0,0,0,.14), 0 9px 46px 8px rgba(0,0,0,.12); } \ No newline at end of file -- cgit 1.2.3-korg