cordova-plugin-mfp
Version:
IBM MobileFirst Platform Foundation Cordova Plugin
315 lines (270 loc) • 5.26 kB
CSS
/*
Licensed Materials - Property of IBM
(C) Copyright 2015 IBM Corp.
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
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.
*/
/* Copyright (C) Worklight Ltd. 2006-2012. All rights reserved. */
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
a, button {
cursor: pointer;
}
.show {
display: inherit;
}
.hide {
display: none ;
}
.clear {
clear: both;
}
.floatLeft {
float: left;
}
.floatRight {
float: right;
}
.strong {
font-weight: bold;
}
.rtl {
direction: rtl;
text-align: right;
}
.ltr {
direction: ltr;
text-align: left;
}
.center {
text-align: center;
}
.max {
height: 100%;
width: 100%;
}
/******************************** END BASE CSS ***********************************/
body {
position: relative;
}
#blockOuter {
width: 100%;
background: #fff;
color: inherit;
overflow: hidden;
position: absolute;
z-index: 110; /* Must be bigger than authenticator z-index (100). */
left: 0;
top: 0;
height: 100%;
}
/* The id is set in the upgrade version in messages.js */
#downloadNewVersion {
cursor: pointer;
text-decoration: underline;
color: #0000ff;
}
#auth {
display: none;
position: relative;
height: 100%;
width: 100%;
}
#diagnostic {
background-color: white;
-webkit-tap-highlight-color: rgba(0,0,0,0);
}
.diagnosticTable td {
border-width: 1px;
border-style: solid;
border-color: black;
font-size: 16px;
padding: 2px;
color : black;
width: 50%;
word-break: break-all;
}
.diagnosticButtons {
font-size:12px;
height:40px;
width: 93.5px;
font-weight: normal;
margin: 5px;
}
/* Start styling for the modal window */
#WLdialogContainer {
position: static;
}
#WLdialogOverlay {
background: #fff;
height: 100%;
left: 0;
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
filter: alpha(opacity=50);
-moz-opacity:0.5;
-khtml-opacity: 0.5;
opacity: 0.5;
position: absolute;
position: fixed;
text-align: center;
top: 0;
width: 100%;
z-index: 16777269;
}
#WLdialog {
background: #fff;
border: 1px solid #ccc;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
-o-border-radius: 10px;
border-radius: 10px;
font-family: helvetica, arial, sans-serif;
font-size: 12px;
margin: 0 auto;
padding: 5px;
position: absolute;
position: fixed;
width: 280px;
z-index: 16777270;
}
#WLdialogTitle {
font-size: 14px;
font-weight: bold;
padding: 5px;
text-align: center;
}
#WLdialogBody {
margin: 5px 0;
min-height: 48px;
}
#WLdialog button {
margin: 0 5px;
}
/* End styling for the modal window */
/* Start styling for the busy modal window */
#WLbusyContainer {
position: static;
}
#WLbusyOverlay {
background: #fff;
height: 100%;
left: 0;
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
filter: alpha(opacity=50);
-moz-opacity:0.5;
-o-opacity: 0.5;
opacity: 0.5;
position: absolute;
top: 0;
width: 100%;
z-index: 9998;
}
#WLbusy {
background: #fff;
border: 1px solid #ccc;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
-o-border-radius: 10px;
border-radius: 10px;
margin: 0 auto;
overflow: hidden;
padding: 5px;
position: absolute;
width: 240px;
z-index: 9999;
}
#WLbusyTitle {
color: #000;
font-family: helvetica, arial, sans-serif;
font-size: 14px;
font-weight: bold;
line-height: 14px;
padding: 5px;
text-align: center;
}
/* End styling for the busy modal window */
html, body {
overflow: visible;
}
/**
* Css for the tab bar.
* The HTML structure is like the fo:
* <div>
* <ul class=">
* <li>
* <span></span>
* </li>
* <span></span>
* <li>
* <span></span>
* </li>
* </ul>
*/
.tabBar {
position : fixed;
border-bottom: 3px solid #CBCBCB;
display: block;
height:63px;
list-style-type: none;
width: 100%;
background-color: black;
margin: 0;
padding: 0;
-webkit-touch-callout: none;
-webkit-tap-highlight-color: rgba(0,0,0,0);
-webkit-user-select: text;
z-index: 99999;
top: 0px;
left: 0px;
}
.tabItem {
background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #0B0B0D), color-stop(1, #434949));
cursor: pointer;
display: block;
float: left;
font-family: sans-serif;
font-size: 14px;
}
.tabItemActive {
background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #CBCBCB), color-stop(1, #E4E4E4));
background-repeat: repeat;
}
.tabSpan {
background: center 5px;
background-repeat: no-repeat;
border-left: 1px solid #000;
border-right: 1px solid #000;
color: #FFFFFF;
line-height: 111px;
display: block;
overflow: hidden;
height: 63px;
text-align: center;
}
.tabItemActive .tabSpan {
color: #9C9A9C;
font-size: 14px;
font-family: sans-serif;
}
.tabDisabled {
filter: alpha(opacity=50);
opacity: .50;
}
.tabTouch {
background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #FF9900), color-stop(1, #FFCA00));
}
.tabBarTouch {
border-bottom: 3px solid #FF9900;
}