2015-06-23 11:41:25 -04:00
|
|
|
/*
|
2016-01-06 23:17:56 -05:00
|
|
|
Copyright 2015, 2016 OpenMarket Ltd
|
2015-06-23 11:41:25 -04:00
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
2015-10-11 12:50:24 -04:00
|
|
|
html {
|
2015-10-11 13:04:01 -04:00
|
|
|
/* hack to stop overscroll bounce on OSX and iOS.
|
|
|
|
N.B. Breaks things when we have legitimate horizontal overscroll */
|
2015-10-11 12:50:24 -04:00
|
|
|
height: 100%;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
2015-07-06 21:10:10 -04:00
|
|
|
body {
|
2015-11-30 12:17:09 -05:00
|
|
|
/* Open Sans lacks combining diacritics, so these will fall through
|
2015-11-29 20:13:59 -05:00
|
|
|
to the next font. Helevetica's diacritics however do not combine
|
2015-11-30 12:17:09 -05:00
|
|
|
nicely with Open Sans (on OSX, at least) and result in a huge
|
2015-11-29 20:13:59 -05:00
|
|
|
horizontal mess. Arial empirically gets it right, hence prioritising
|
|
|
|
Arial here. */
|
2015-11-30 12:17:09 -05:00
|
|
|
font-family: 'Open Sans', Arial, Helvetica, Sans-Serif;
|
|
|
|
font-size: 15px;
|
2015-07-17 19:48:22 -04:00
|
|
|
color: #454545;
|
2015-07-14 07:11:01 -04:00
|
|
|
border: 0px;
|
|
|
|
margin: 0px;
|
2015-07-06 21:10:10 -04:00
|
|
|
}
|
|
|
|
|
2015-06-11 13:23:02 -04:00
|
|
|
div.error {
|
|
|
|
color: red;
|
|
|
|
}
|
2015-07-12 20:51:24 -04:00
|
|
|
|
|
|
|
h2 {
|
2015-10-22 21:32:49 -04:00
|
|
|
color: #454545;
|
2015-07-12 20:51:24 -04:00
|
|
|
font-weight: 400;
|
2015-11-30 12:17:09 -05:00
|
|
|
font-size: 18px;
|
2015-07-12 20:51:24 -04:00
|
|
|
margin-top: 16px;
|
|
|
|
margin-bottom: 16px;
|
|
|
|
}
|
2015-07-16 04:37:14 -04:00
|
|
|
|
2015-10-11 12:28:36 -04:00
|
|
|
a:hover,
|
|
|
|
a:link,
|
|
|
|
a:visited {
|
2015-10-22 21:32:49 -04:00
|
|
|
color: #76cfa6;
|
2015-10-11 12:28:36 -04:00
|
|
|
}
|
|
|
|
|
2016-01-15 11:32:23 -05:00
|
|
|
input[type=text]:focus, textarea:focus {
|
2015-12-10 20:35:05 -05:00
|
|
|
border: 1px solid #76CFA6;
|
|
|
|
outline: none;
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
|
|
|
|
2015-11-12 21:29:59 -05:00
|
|
|
/* XXX: critical hack to GeminiScrollbar to allow them to work in FF 42 and Chrome 48.
|
|
|
|
Stop the scrollbar view from pushing out the container's overall sizing, which causes
|
|
|
|
flexbox to adapt to the new size and cause the view to keep growing.
|
|
|
|
*/
|
|
|
|
.gm-scrollbar-container .gm-scroll-view {
|
|
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
|
2015-09-21 13:22:29 -04:00
|
|
|
.mx_ContextualMenu_background {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
opacity: 1.0;
|
|
|
|
z-index: 2000;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_ContextualMenu {
|
2015-10-24 21:03:22 -04:00
|
|
|
border: 1px solid #a4a4a4;
|
2015-09-21 13:22:29 -04:00
|
|
|
border-radius: 8px;
|
|
|
|
background-color: #fff;
|
2015-09-21 19:16:45 -04:00
|
|
|
color: #747474;
|
2015-09-21 13:22:29 -04:00
|
|
|
position: fixed;
|
2015-09-21 19:16:45 -04:00
|
|
|
z-index: 2001;
|
2015-09-21 13:22:29 -04:00
|
|
|
padding: 6px;
|
|
|
|
}
|
|
|
|
|
2015-10-21 14:02:02 -04:00
|
|
|
.mx_ContextualMenu_chevron_right {
|
2015-09-21 13:22:29 -04:00
|
|
|
padding: 12px;
|
|
|
|
position: absolute;
|
|
|
|
right: -21px;
|
|
|
|
top: 0px;
|
|
|
|
}
|
|
|
|
|
2015-10-21 14:02:02 -04:00
|
|
|
.mx_ContextualMenu_chevron_left {
|
|
|
|
padding: 12px;
|
|
|
|
position: absolute;
|
|
|
|
left: -21px;
|
|
|
|
top: 0px;
|
|
|
|
}
|
|
|
|
|
2015-09-21 13:22:29 -04:00
|
|
|
.mx_ContextualMenu_field {
|
2015-09-21 19:16:45 -04:00
|
|
|
padding: 3px 6px 3px 6px;
|
|
|
|
cursor: pointer;
|
2015-09-21 13:22:29 -04:00
|
|
|
}
|
|
|
|
|
2015-10-27 12:56:37 -04:00
|
|
|
.mx_ContextualMenu_spinner {
|
|
|
|
display: block;
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
2015-07-27 13:26:51 -04:00
|
|
|
|
2015-09-21 13:22:29 -04:00
|
|
|
.mx_Dialog_wrapper {
|
2015-07-16 04:37:14 -04:00
|
|
|
position: fixed;
|
2015-11-19 05:46:49 -05:00
|
|
|
z-index: 4000;
|
2015-07-16 04:37:14 -04:00
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2015-07-23 04:33:10 -04:00
|
|
|
|
|
|
|
display: -webkit-box;
|
|
|
|
display: -moz-box;
|
|
|
|
display: -ms-flexbox;
|
|
|
|
display: -webkit-flex;
|
|
|
|
display: flex;
|
|
|
|
-webkit-align-items: center;
|
|
|
|
align-items: center;
|
|
|
|
-webkit-justify-content: center;
|
|
|
|
justify-content: center;
|
2015-07-16 04:37:14 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_Dialog {
|
|
|
|
background-color: #fff;
|
2015-07-21 19:48:55 -04:00
|
|
|
color: #747474;
|
|
|
|
text-align: center;
|
2015-11-13 19:14:41 -05:00
|
|
|
z-index: 4010;
|
2015-07-21 19:48:55 -04:00
|
|
|
font-weight: 300;
|
2015-11-30 12:17:09 -05:00
|
|
|
font-size: 15px;
|
2015-07-16 04:37:14 -04:00
|
|
|
position: relative;
|
2015-07-21 19:48:55 -04:00
|
|
|
border-radius: 8px;
|
2015-10-26 21:39:19 -04:00
|
|
|
max-width: 80%;
|
2015-07-23 04:33:10 -04:00
|
|
|
}
|
|
|
|
|
2015-11-19 05:49:24 -05:00
|
|
|
.mx_Dialog_background {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
background-color: #000;
|
|
|
|
opacity: 0.2;
|
|
|
|
}
|
|
|
|
|
2015-10-25 19:33:28 -04:00
|
|
|
.mx_Dialog_lightbox .mx_Dialog_background {
|
|
|
|
opacity: 0.85;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_Dialog_lightbox .mx_Dialog {
|
|
|
|
border-radius: 0px;
|
2015-10-26 21:39:19 -04:00
|
|
|
background-color: transparent;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
max-width: 100%;
|
|
|
|
max-height: 100%;
|
2015-10-28 20:39:12 -04:00
|
|
|
pointer-events: none;
|
2015-07-16 04:37:14 -04:00
|
|
|
}
|
2015-07-20 11:26:47 -04:00
|
|
|
|
2015-07-21 19:48:55 -04:00
|
|
|
.mx_Dialog_content {
|
2015-07-23 04:33:10 -04:00
|
|
|
margin: 24px;
|
2015-07-21 19:48:55 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_Dialog_buttons {
|
2015-07-23 04:33:10 -04:00
|
|
|
padding-bottom: 24px;
|
2015-07-21 19:48:55 -04:00
|
|
|
}
|
|
|
|
|
2016-02-04 06:50:29 -05:00
|
|
|
.mx_Dialog button, .mx_Dialog input[type="submit"] {
|
2015-07-21 19:48:55 -04:00
|
|
|
border: 0px;
|
|
|
|
height: 36px;
|
|
|
|
border-radius: 36px;
|
|
|
|
font-weight: 400;
|
2015-11-30 12:17:09 -05:00
|
|
|
font-size: 15px;
|
2015-07-21 19:48:55 -04:00
|
|
|
color: #fff;
|
2015-10-22 21:32:49 -04:00
|
|
|
background-color: #76cfa6;
|
2015-07-21 20:02:06 -04:00
|
|
|
margin-left: 8px;
|
|
|
|
margin-right: 8px;
|
|
|
|
padding-left: 1em;
|
|
|
|
padding-right: 1em;
|
2015-07-21 19:48:55 -04:00
|
|
|
}
|
|
|
|
|
2016-01-13 10:36:57 -05:00
|
|
|
.mx_Dialog_title {
|
2015-07-20 11:26:47 -04:00
|
|
|
min-height: 16px;
|
2015-07-21 19:48:55 -04:00
|
|
|
padding: 12px;
|
2015-10-24 21:03:22 -04:00
|
|
|
border-bottom: 1px solid #a4a4a4;
|
2015-07-20 11:26:47 -04:00
|
|
|
font-weight: bold;
|
2015-11-30 12:17:09 -05:00
|
|
|
font-size: 18px;
|
2015-07-20 11:26:47 -04:00
|
|
|
line-height: 1.4;
|
2015-09-23 18:19:40 -04:00
|
|
|
}
|
2016-01-13 10:36:57 -05:00
|
|
|
|
|
|
|
.mx_TextInputDialog_label {
|
|
|
|
text-align: left;
|
|
|
|
padding-bottom: 12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_TextInputDialog_input {
|
|
|
|
font-size: 15px;
|
2016-02-15 12:37:19 -05:00
|
|
|
border-radius: 3px;
|
|
|
|
border: 1px solid #f0f0f0;
|
|
|
|
padding: 9px;
|
|
|
|
color: #454545;
|
2016-01-13 10:36:57 -05:00
|
|
|
}
|