2014-06-05 15:12:07 +04:00
|
|
|
/* APP STYLING -------------------------------------------------------------- */
|
|
|
|
|
2013-08-30 13:38:49 +04:00
|
|
|
|
|
|
|
#app {
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
#app * {
|
|
|
|
-moz-box-sizing: border-box; box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
2014-06-05 15:12:07 +04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* APP-NAVIGATION ------------------------------------------------------------*/
|
|
|
|
|
|
|
|
|
2013-08-30 13:38:49 +04:00
|
|
|
/* Navigation: folder like structure */
|
|
|
|
#app-navigation {
|
2014-06-05 23:18:21 +04:00
|
|
|
width: 250px;
|
2013-08-30 13:38:49 +04:00
|
|
|
height: 100%;
|
|
|
|
float: left;
|
|
|
|
-moz-box-sizing: border-box; box-sizing: border-box;
|
2015-08-24 13:16:55 +03:00
|
|
|
background-color: #fff;
|
2013-09-29 09:46:23 +04:00
|
|
|
padding-bottom: 44px;
|
2014-06-05 15:12:07 +04:00
|
|
|
-webkit-user-select: none;
|
|
|
|
-moz-user-select: none;
|
|
|
|
-ms-user-select: none;
|
|
|
|
user-select: none;
|
2015-08-30 21:47:22 +03:00
|
|
|
border-right: 1px solid #eee;
|
2013-08-30 13:38:49 +04:00
|
|
|
}
|
|
|
|
#app-navigation > ul {
|
2014-06-02 19:32:36 +04:00
|
|
|
position: relative;
|
2013-08-30 13:38:49 +04:00
|
|
|
height: 100%;
|
2015-03-17 20:44:18 +03:00
|
|
|
width: inherit;
|
2013-08-30 13:38:49 +04:00
|
|
|
overflow: auto;
|
2015-03-17 20:42:11 +03:00
|
|
|
padding-bottom: 44px;
|
2013-08-30 13:38:49 +04:00
|
|
|
-moz-box-sizing: border-box; box-sizing: border-box;
|
|
|
|
}
|
|
|
|
#app-navigation li {
|
|
|
|
position: relative;
|
|
|
|
width: 100%;
|
|
|
|
-moz-box-sizing: border-box; box-sizing: border-box;
|
|
|
|
}
|
2014-08-26 21:18:15 +04:00
|
|
|
|
|
|
|
#app-navigation .active.with-menu > a,
|
|
|
|
#app-navigation .with-counter > a {
|
|
|
|
padding-right: 50px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#app-navigation .active.with-menu.with-counter > a {
|
|
|
|
padding-right: 90px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#app-navigation .with-icon a,
|
|
|
|
#app-navigation .app-navigation-entry-loading a {
|
2013-08-30 13:38:49 +04:00
|
|
|
padding-left: 44px;
|
|
|
|
background-size: 16px 16px;
|
|
|
|
background-position: 14px center;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
}
|
|
|
|
|
|
|
|
#app-navigation li > a {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
2013-09-13 17:53:03 +04:00
|
|
|
line-height: 44px;
|
2015-02-18 17:34:31 +03:00
|
|
|
min-height: 44px;
|
2013-09-13 17:53:03 +04:00
|
|
|
padding: 0 12px;
|
2013-08-30 13:38:49 +04:00
|
|
|
overflow: hidden;
|
|
|
|
-moz-box-sizing: border-box; box-sizing: border-box;
|
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
2015-08-24 13:16:55 +03:00
|
|
|
color: #000;
|
2015-09-15 18:52:58 +03:00
|
|
|
opacity: .57;
|
2015-08-24 13:16:55 +03:00
|
|
|
}
|
|
|
|
#app-navigation .active,
|
|
|
|
#app-navigation .active a,
|
|
|
|
#app-navigation li:hover > a,
|
|
|
|
#app-navigation li:focus > a,
|
|
|
|
#app-navigation a:focus,
|
|
|
|
#app-navigation .selected,
|
|
|
|
#app-navigation .selected a {
|
|
|
|
opacity: 1;
|
2013-08-30 13:38:49 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
#app-navigation .collapse {
|
|
|
|
display: none; /* hide collapse button intially */
|
|
|
|
}
|
|
|
|
#app-navigation .collapsible > .collapse {
|
|
|
|
position: absolute;
|
|
|
|
height: 44px;
|
|
|
|
width: 44px;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
background: none; background-image: url('../img/actions/triangle-s.svg');
|
|
|
|
background-size: 16px; background-repeat: no-repeat; background-position: center;
|
|
|
|
border: none;
|
|
|
|
border-radius: 0;
|
|
|
|
outline: none !important;
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
2014-11-06 18:22:57 +03:00
|
|
|
#app-navigation .collapsible:hover > a,
|
|
|
|
#app-navigation .collapsible:focus > a {
|
2013-08-30 13:38:49 +04:00
|
|
|
background-image: none;
|
|
|
|
}
|
2014-11-06 18:22:57 +03:00
|
|
|
#app-navigation .collapsible:hover > .collapse,
|
|
|
|
#app-navigation .collapsible:focus > .collapse {
|
2013-08-30 13:38:49 +04:00
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
#app-navigation .collapsible .collapse {
|
|
|
|
-moz-transform: rotate(-90deg);
|
|
|
|
-webkit-transform: rotate(-90deg);
|
|
|
|
-ms-transform:rotate(-90deg);
|
|
|
|
-o-transform:rotate(-90deg);
|
|
|
|
transform: rotate(-90deg);
|
|
|
|
}
|
|
|
|
#app-navigation .collapsible.open .collapse {
|
|
|
|
-moz-transform: rotate(0);
|
|
|
|
-webkit-transform: rotate(0);
|
|
|
|
-ms-transform:rotate(0);
|
|
|
|
-o-transform:rotate(0);
|
|
|
|
transform: rotate(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Second level nesting for lists */
|
|
|
|
#app-navigation > ul ul {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
#app-navigation > ul ul li > a {
|
|
|
|
padding-left: 32px;
|
|
|
|
}
|
2014-08-26 21:18:15 +04:00
|
|
|
#app-navigation > .with-icon ul li > a,
|
|
|
|
#app-navigation > .with-icon ul li.app-navigation-entry-loading > a {
|
2013-10-06 23:40:29 +04:00
|
|
|
padding-left: 68px;
|
|
|
|
background-position: 44px center;
|
2013-08-30 13:38:49 +04:00
|
|
|
}
|
|
|
|
|
2014-08-26 21:18:15 +04:00
|
|
|
#app-navigation .collapsible.open {
|
2013-08-30 13:38:49 +04:00
|
|
|
background-image: linear-gradient(top, rgb(238,238,238) 0%, rgb(245,245,245) 100%);
|
|
|
|
background-image: -o-linear-gradient(top, rgb(238,238,238) 0%, rgb(245,245,245) 100%);
|
|
|
|
background-image: -moz-linear-gradient(top, rgb(238,238,238) 0%, rgb(245,245,245) 100%);
|
|
|
|
background-image: -webkit-linear-gradient(top, rgb(238,238,238) 0%, rgb(245,245,245) 100%);
|
|
|
|
background-image: -ms-linear-gradient(top, rgb(238,238,238) 0%, rgb(245,245,245) 100%);
|
|
|
|
}
|
|
|
|
|
2014-11-06 18:22:57 +03:00
|
|
|
#app-navigation > ul .collapsible.open:hover,
|
|
|
|
#app-navigation > ul .collapsible.open:focus {
|
2014-09-11 18:34:29 +04:00
|
|
|
box-shadow: inset 0 0 3px #ddd;
|
2013-08-30 13:38:49 +04:00
|
|
|
}
|
|
|
|
|
2014-08-26 21:18:15 +04:00
|
|
|
#app-navigation > ul .collapsible.open ul {
|
2013-08-30 13:38:49 +04:00
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-09-05 19:49:17 +04:00
|
|
|
/* Deleted entries with undo button */
|
|
|
|
#app-navigation .app-navigation-entry-deleted {
|
|
|
|
display: inline-block;
|
|
|
|
height: 44px;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#app-navigation .app-navigation-entry-deleted-description {
|
|
|
|
padding-left: 12px;
|
|
|
|
position: relative;
|
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow: hidden;
|
|
|
|
display: inline-block;
|
|
|
|
width: 201px; /* fallback for IE8 */
|
|
|
|
width: calc(100% - 49px);
|
|
|
|
line-height: 44px;
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
#app-navigation .app-navigation-entry-deleted-button {
|
|
|
|
margin: 0;
|
|
|
|
height: 44px;
|
|
|
|
width: 44px;
|
|
|
|
line-height: 44px;
|
|
|
|
border: 0;
|
|
|
|
display: inline-block;
|
|
|
|
background-color: transparent;
|
|
|
|
opacity: .5;
|
|
|
|
}
|
|
|
|
|
2014-11-06 18:22:57 +03:00
|
|
|
#app-navigation .app-navigation-entry-deleted-button:hover,
|
|
|
|
#app-navigation .app-navigation-entry-deleted-button:focus {
|
2014-09-05 19:49:17 +04:00
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
2014-08-26 21:18:15 +04:00
|
|
|
/* counter and actions, legacy code */
|
2013-08-30 13:38:49 +04:00
|
|
|
#app-navigation .utils {
|
|
|
|
position: absolute;
|
2013-09-02 21:38:47 +04:00
|
|
|
padding: 7px 7px 0 0;
|
2013-08-30 13:38:49 +04:00
|
|
|
right: 0;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
font-size: 12px;
|
|
|
|
}
|
|
|
|
#app-navigation .utils button,
|
|
|
|
#app-navigation .utils .counter {
|
|
|
|
width: 44px;
|
|
|
|
height: 44px;
|
|
|
|
padding-top: 12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* drag and drop */
|
|
|
|
#app-navigation .drag-and-drop {
|
|
|
|
-moz-transition: padding-bottom 500ms ease 0s;
|
|
|
|
-o-transition: padding-bottom 500ms ease 0s;
|
|
|
|
-webkit-transition: padding-bottom 500ms ease 0s;
|
|
|
|
-ms-transition: padding-bottom 500ms ease 0s;
|
|
|
|
transition: padding-bottom 500ms ease 0s;
|
|
|
|
padding-bottom: 40px;
|
|
|
|
}
|
|
|
|
#app-navigation .error {
|
|
|
|
color: #dd1144;
|
|
|
|
}
|
|
|
|
|
|
|
|
#app-navigation .app-navigation-separator {
|
|
|
|
border-bottom: 1px solid #ddd;
|
|
|
|
}
|
|
|
|
|
2014-08-26 21:18:15 +04:00
|
|
|
/**
|
|
|
|
* App navigation utils, buttons and counters for drop down menu
|
|
|
|
*/
|
|
|
|
#app-navigation .app-navigation-entry-utils {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
z-index: 105;
|
|
|
|
}
|
|
|
|
|
|
|
|
#app-navigation .app-navigation-entry-utils ul {
|
|
|
|
display: block !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#app-navigation .app-navigation-entry-utils li {
|
|
|
|
float: left;
|
|
|
|
width: 44px !important;
|
|
|
|
height: 44px;
|
|
|
|
line-height: 44px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#app-navigation .active > .app-navigation-entry-utils li {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
2013-08-30 13:38:49 +04:00
|
|
|
|
2014-08-26 21:18:15 +04:00
|
|
|
#app-navigation .app-navigation-entry-utils button {
|
|
|
|
height: 38px;
|
|
|
|
width: 38px;
|
|
|
|
line-height: 38px;
|
|
|
|
float: left;
|
|
|
|
}
|
2013-08-30 13:38:49 +04:00
|
|
|
|
2014-08-26 21:18:15 +04:00
|
|
|
#app-navigation .app-navigation-entry-utils-menu-button {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
#app-navigation .app-navigation-entry-utils-menu-button button {
|
|
|
|
border: 0;
|
|
|
|
opacity: .5;
|
|
|
|
background-color: transparent;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: center;
|
|
|
|
background-image: url('../img/actions/more.svg');
|
|
|
|
}
|
|
|
|
|
|
|
|
#app-navigation .app-navigation-entry-utils-menu-button:hover button,
|
|
|
|
#app-navigation .app-navigation-entry-utils-menu-button:focus button {
|
|
|
|
background-color: transparent;
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
#app-navigation .app-navigation-entry-utils-counter {
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: hidden;
|
|
|
|
text-align: right;
|
|
|
|
font-size: 9pt;
|
|
|
|
width: 38px;
|
|
|
|
line-height: 44px;
|
|
|
|
padding: 0 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#app-navigation .app-navigation-entry-utils ul,
|
|
|
|
#app-navigation .app-navigation-entry-menu ul {
|
|
|
|
list-style-type: none;
|
|
|
|
}
|
|
|
|
|
2015-08-26 12:07:29 +03:00
|
|
|
/* menu bubble / popover */
|
2015-08-06 11:58:59 +03:00
|
|
|
.bubble,
|
2014-08-26 21:18:15 +04:00
|
|
|
#app-navigation .app-navigation-entry-menu {
|
|
|
|
position: absolute;
|
2015-08-24 13:16:55 +03:00
|
|
|
background-color: #fff;
|
2014-08-26 21:18:15 +04:00
|
|
|
color: #333;
|
|
|
|
border-radius: 3px;
|
2015-08-07 18:58:37 +03:00
|
|
|
border-top-right-radius: 0;
|
2014-08-26 21:18:15 +04:00
|
|
|
z-index: 110;
|
|
|
|
margin: -5px 14px 5px 10px;
|
|
|
|
right: 0;
|
|
|
|
-webkit-filter: drop-shadow(0 0 5px rgba(150, 150, 150, 0.75));
|
|
|
|
-moz-filter: drop-shadow(0 0 5px rgba(150, 150, 150, 0.75));
|
|
|
|
-ms-filter: drop-shadow(0 0 5px rgba(150, 150, 150, 0.75));
|
|
|
|
-o-filter: drop-shadow(0 0 5px rgba(150, 150, 150, 0.75));
|
|
|
|
filter: drop-shadow(0 0 5px rgba(150, 150, 150, 0.75));
|
|
|
|
}
|
|
|
|
/* miraculous border arrow stuff */
|
2015-08-06 11:58:59 +03:00
|
|
|
.bubble:after,
|
2015-08-26 10:57:50 +03:00
|
|
|
#app-navigation .app-navigation-entry-menu:after {
|
2014-08-26 21:18:15 +04:00
|
|
|
bottom: 100%;
|
|
|
|
right: 0; /* change this to adjust the arrow position */
|
|
|
|
border: solid transparent;
|
|
|
|
content: " ";
|
|
|
|
height: 0;
|
|
|
|
width: 0;
|
|
|
|
position: absolute;
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
2015-08-06 11:58:59 +03:00
|
|
|
.bubble:after,
|
2014-08-26 21:18:15 +04:00
|
|
|
#app-navigation .app-navigation-entry-menu:after {
|
|
|
|
border-color: rgba(238, 238, 238, 0);
|
2015-08-24 13:16:55 +03:00
|
|
|
border-bottom-color: #fff;
|
2014-08-26 21:18:15 +04:00
|
|
|
border-width: 10px;
|
|
|
|
margin-left: -10px;
|
|
|
|
}
|
2015-08-26 12:07:29 +03:00
|
|
|
.bubble .action {
|
|
|
|
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)" !important;
|
|
|
|
filter: alpha(opacity=50) !important;
|
|
|
|
opacity: .5 !important;
|
|
|
|
}
|
|
|
|
.bubble .action:hover,
|
|
|
|
.bubble .action:focus {
|
|
|
|
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)" !important;
|
|
|
|
filter: alpha(opacity=100) !important;
|
|
|
|
opacity: 1 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
#app-navigation .app-navigation-entry-menu {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#app-navigation .app-navigation-entry-menu.open {
|
|
|
|
display: block;
|
|
|
|
}
|
2015-08-06 11:58:59 +03:00
|
|
|
|
2014-08-26 21:18:15 +04:00
|
|
|
/* list of options for an entry */
|
|
|
|
#app-navigation .app-navigation-entry-menu ul {
|
|
|
|
display: block !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
#app-navigation .app-navigation-entry-menu li {
|
|
|
|
float: left;
|
|
|
|
width: 38px !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
#app-navigation .app-navigation-entry-menu li button {
|
|
|
|
float: right;
|
|
|
|
width: 36px !important;
|
|
|
|
height: 36px;
|
|
|
|
line-height: 36px;
|
|
|
|
border: 0;
|
|
|
|
opacity: .5;
|
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
#app-navigation .app-navigation-entry-menu li button:hover,
|
|
|
|
#app-navigation .app-navigation-entry-menu li button:focus {
|
|
|
|
opacity: 1;
|
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* editing an entry */
|
|
|
|
#app-navigation .app-navigation-entry-edit {
|
|
|
|
padding-left: 5px;
|
|
|
|
padding-right: 5px;
|
|
|
|
display: inline-block;
|
|
|
|
height: 39px;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#app-navigation .app-navigation-entry-edit input {
|
|
|
|
border-bottom-right-radius: 0;
|
|
|
|
border-top-right-radius: 0;
|
2014-09-15 19:09:12 +04:00
|
|
|
width: 204px; /* fallback for IE8 */
|
2014-09-12 04:12:18 +04:00
|
|
|
width: calc(100% - 36px);
|
2014-08-26 21:18:15 +04:00
|
|
|
padding: 5px;
|
|
|
|
margin-right: 0;
|
|
|
|
height: 38px;
|
|
|
|
float: left;
|
|
|
|
border: 1px solid rgba(190,190,190,.9);
|
|
|
|
}
|
|
|
|
|
2014-09-02 13:40:53 +04:00
|
|
|
#app-navigation .app-navigation-entry-edit button,
|
|
|
|
#app-navigation .app-navigation-entry-edit input[type="submit"] {
|
2014-08-26 21:18:15 +04:00
|
|
|
width: 36px;
|
|
|
|
height: 38px;
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
#app-navigation .app-navigation-entry-edit .icon-checkmark {
|
|
|
|
border-bottom-left-radius: 0;
|
|
|
|
border-top-left-radius: 0;
|
|
|
|
border-left: 0;
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
2014-06-05 15:12:07 +04:00
|
|
|
|
|
|
|
|
|
|
|
/* APP-CONTENT ---------------------------------------------------------------*/
|
|
|
|
|
|
|
|
|
2013-08-30 13:38:49 +04:00
|
|
|
/* Part where the content will be loaded into */
|
|
|
|
#app-content {
|
2014-06-04 18:41:11 +04:00
|
|
|
position: relative;
|
2013-08-30 13:38:49 +04:00
|
|
|
height: 100%;
|
|
|
|
overflow-y: auto;
|
2015-08-31 07:55:20 +03:00
|
|
|
-webkit-overflow-scrolling: touch;
|
2013-08-30 13:38:49 +04:00
|
|
|
}
|
|
|
|
|
2014-08-26 21:18:15 +04:00
|
|
|
#app-content-wrapper {
|
|
|
|
min-width: 100%;
|
|
|
|
min-height: 100%;
|
|
|
|
}
|
|
|
|
|
2015-07-25 00:07:09 +03:00
|
|
|
/* APP-SIDEBAR ----------------------------------------------------------------*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
Sidebar: a sidebar to be used within #app-content
|
|
|
|
have it as first element within app-content in order to shrink other
|
|
|
|
sibling containers properly. Compare Files app for example.
|
|
|
|
*/
|
|
|
|
#app-sidebar {
|
2015-08-04 16:47:43 +03:00
|
|
|
position: fixed;
|
|
|
|
top: 45px;
|
2015-07-25 00:07:09 +03:00
|
|
|
right: 0;
|
|
|
|
left: auto;
|
|
|
|
bottom: 0;
|
2015-08-06 12:45:12 +03:00
|
|
|
width: 27%;
|
2015-08-24 17:58:04 +03:00
|
|
|
min-width: 250px;
|
2015-07-25 00:07:09 +03:00
|
|
|
display: block;
|
2015-08-24 17:58:04 +03:00
|
|
|
background: #fff;
|
|
|
|
border-left: 1px solid #eee;
|
2015-07-25 00:07:09 +03:00
|
|
|
-webkit-transition: margin-right 300ms;
|
|
|
|
-moz-transition: margin-right 300ms;
|
|
|
|
-o-transition: margin-right 300ms;
|
|
|
|
transition: margin-right 300ms;
|
|
|
|
overflow-x: hidden;
|
|
|
|
overflow-y: auto;
|
|
|
|
visibility: visible;
|
|
|
|
z-index: 500;
|
|
|
|
}
|
2014-06-06 15:01:24 +04:00
|
|
|
|
2015-08-06 12:45:12 +03:00
|
|
|
#app-content.with-app-sidebar {
|
|
|
|
margin-right: 27%;
|
2015-07-25 00:07:09 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#app-sidebar.disappear {
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
2014-06-06 15:01:24 +04:00
|
|
|
|
|
|
|
/* APP-SETTINGS ---------------------------------------------------------------*/
|
|
|
|
|
2013-08-30 13:38:49 +04:00
|
|
|
/* settings area */
|
|
|
|
#app-settings {
|
|
|
|
position: fixed;
|
2014-07-23 15:06:43 +04:00
|
|
|
width: 250px; /* change to 100% when layout positions are absolute */
|
2013-08-30 13:38:49 +04:00
|
|
|
bottom: 0;
|
2014-08-26 21:18:15 +04:00
|
|
|
z-index: 140;
|
2013-08-30 13:38:49 +04:00
|
|
|
}
|
2013-12-09 16:32:28 +04:00
|
|
|
#app-settings.opened #app-settings-content {
|
|
|
|
display: block;
|
|
|
|
}
|
2013-08-30 13:38:49 +04:00
|
|
|
#app-settings-content {
|
|
|
|
display: none;
|
|
|
|
padding: 10px;
|
2015-08-24 13:16:55 +03:00
|
|
|
background-color: #fff;
|
2013-08-30 13:38:49 +04:00
|
|
|
}
|
|
|
|
#app-settings.open #app-settings-content {
|
|
|
|
display: block;
|
2014-03-05 18:08:16 +04:00
|
|
|
/* restrict height of settings and make scrollable */
|
|
|
|
max-height: 300px;
|
2014-03-18 21:25:30 +04:00
|
|
|
overflow-y: auto;
|
2013-08-30 13:38:49 +04:00
|
|
|
}
|
2015-08-30 21:47:22 +03:00
|
|
|
#app-settings-content,
|
|
|
|
#app-settings-header {
|
|
|
|
border-right: 1px solid #eee;
|
|
|
|
}
|
2013-08-30 13:38:49 +04:00
|
|
|
|
2014-06-06 15:01:24 +04:00
|
|
|
/* display input fields at full width */
|
2014-06-07 14:07:50 +04:00
|
|
|
#app-settings-content input[type='text'] {
|
2014-06-06 15:01:24 +04:00
|
|
|
width: 93%;
|
|
|
|
}
|
|
|
|
|
2013-08-30 13:38:49 +04:00
|
|
|
.settings-button {
|
|
|
|
display: block;
|
2013-09-29 09:46:23 +04:00
|
|
|
height: 44px;
|
2013-08-30 13:38:49 +04:00
|
|
|
width: 100%;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
2015-08-24 13:16:55 +03:00
|
|
|
background-color: #fff;
|
2015-04-08 20:25:28 +03:00
|
|
|
background-image: url('../img/actions/settings.svg');
|
|
|
|
background-position: 14px center;
|
|
|
|
background-repeat: no-repeat;
|
2013-08-30 13:38:49 +04:00
|
|
|
box-shadow: none;
|
|
|
|
border: 0;
|
|
|
|
border-radius: 0;
|
2015-04-08 20:25:28 +03:00
|
|
|
text-align: left;
|
|
|
|
padding-left: 42px;
|
|
|
|
font-weight: normal;
|
2013-08-30 13:38:49 +04:00
|
|
|
}
|
2013-10-04 21:24:07 +04:00
|
|
|
.settings-button:hover,
|
|
|
|
.settings-button:focus {
|
2015-08-24 13:16:55 +03:00
|
|
|
background-color: #fff;
|
2013-08-30 13:38:49 +04:00
|
|
|
}
|
2013-10-04 21:24:07 +04:00
|
|
|
.settings-button.opened:hover,
|
|
|
|
.settings-button.opened:focus {
|
2015-08-24 13:16:55 +03:00
|
|
|
background-color: #fff;
|
2013-10-04 21:24:07 +04:00
|
|
|
}
|
2013-08-30 13:38:49 +04:00
|
|
|
|
|
|
|
/* buttons */
|
|
|
|
button.loading {
|
|
|
|
background-image: url('../img/loading.gif');
|
|
|
|
background-position: right 10px center; background-repeat: no-repeat;
|
|
|
|
background-size: 16px;
|
|
|
|
padding-right: 30px;
|
|
|
|
}
|
|
|
|
|
2014-03-27 19:06:37 +04:00
|
|
|
/* general styles for the content area */
|
|
|
|
.section {
|
|
|
|
display: block;
|
|
|
|
padding: 30px;
|
|
|
|
color: #555;
|
2015-08-25 15:06:05 +03:00
|
|
|
margin-bottom: 24px;
|
2014-03-27 19:06:37 +04:00
|
|
|
}
|
2015-02-23 17:29:25 +03:00
|
|
|
.section.hidden {
|
|
|
|
display: none !important;
|
|
|
|
}
|
2015-05-04 12:51:02 +03:00
|
|
|
.sub-section {
|
|
|
|
position: relative;
|
|
|
|
margin-top: 10px;
|
|
|
|
margin-left: 27px;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
2014-08-04 16:42:47 +04:00
|
|
|
/* no top border for first settings item */
|
2014-10-16 20:01:48 +04:00
|
|
|
#app-content > .section:first-child {
|
2014-08-04 16:42:47 +04:00
|
|
|
border-top: none;
|
|
|
|
}
|
2014-03-27 19:06:37 +04:00
|
|
|
.section h2 {
|
|
|
|
font-size: 20px;
|
2014-10-08 14:46:24 +04:00
|
|
|
margin-bottom: 12px;
|
2014-09-29 18:39:07 +04:00
|
|
|
font-weight: normal;
|
2014-03-27 19:06:37 +04:00
|
|
|
}
|
2014-04-01 20:50:47 +04:00
|
|
|
.section h3 {
|
2015-03-26 23:23:49 +03:00
|
|
|
font-size: 15px;
|
2014-09-29 18:39:07 +04:00
|
|
|
font-weight: normal;
|
2015-03-26 23:23:49 +03:00
|
|
|
margin: 12px 0;
|
2014-04-01 20:50:47 +04:00
|
|
|
}
|
2014-03-27 19:06:37 +04:00
|
|
|
/* slight position correction of checkboxes and radio buttons */
|
|
|
|
.section input[type="checkbox"],
|
|
|
|
.section input[type="radio"] {
|
|
|
|
vertical-align: -2px;
|
|
|
|
margin-right: 4px;
|
|
|
|
}
|
2014-02-11 18:57:45 +04:00
|
|
|
.appear {
|
|
|
|
opacity: 1;
|
|
|
|
transition: opacity 500ms ease 0s;
|
|
|
|
-moz-transition: opacity 500ms ease 0s;
|
|
|
|
-ms-transition: opacity 500ms ease 0s;
|
|
|
|
-o-transition: opacity 500ms ease 0s;
|
|
|
|
-webkit-transition: opacity 500ms ease 0s;
|
|
|
|
}
|
|
|
|
.appear.transparent {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
2014-06-03 21:12:31 +04:00
|
|
|
|
|
|
|
|
|
|
|
/* do not use italic typeface style, instead lighter color */
|
|
|
|
em {
|
|
|
|
font-style: normal;
|
|
|
|
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
|
|
|
|
opacity: .5;
|
|
|
|
}
|
2015-03-16 16:07:53 +03:00
|
|
|
|
|
|
|
/* generic dropdown style */
|
|
|
|
.dropdown {
|
|
|
|
background:#eee;
|
|
|
|
border-bottom-left-radius: 5px;
|
|
|
|
border-bottom-right-radius: 5px;
|
|
|
|
box-shadow:0 1px 1px #777;
|
|
|
|
display:block;
|
|
|
|
margin-right: 0;
|
|
|
|
position:absolute;
|
|
|
|
right:0;
|
|
|
|
width:420px;
|
|
|
|
z-index:500;
|
|
|
|
padding:16px;
|
|
|
|
}
|
2015-07-01 17:12:36 +03:00
|
|
|
|
2015-07-29 18:36:07 +03:00
|
|
|
/* generic tab styles */
|
|
|
|
.tabHeaders {
|
|
|
|
margin: 15px;
|
|
|
|
}
|
|
|
|
.tabHeaders .tabHeader {
|
|
|
|
float: left;
|
|
|
|
padding: 5px;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
.tabHeaders .tabHeader, .tabHeaders .tabHeader a {
|
|
|
|
color: #888;
|
|
|
|
}
|
2015-08-24 17:58:04 +03:00
|
|
|
.tabHeaders .tabHeader.selected {
|
|
|
|
font-weight: 600;
|
2015-07-29 18:36:07 +03:00
|
|
|
}
|
|
|
|
.tabHeaders .tabHeader.selected,
|
|
|
|
.tabHeaders .tabHeader:hover {
|
2015-08-24 17:58:04 +03:00
|
|
|
border-bottom: 1px solid #333;
|
2015-07-29 18:36:07 +03:00
|
|
|
}
|
|
|
|
.tabHeaders .tabHeader.selected,
|
|
|
|
.tabHeaders .tabHeader.selected a,
|
|
|
|
.tabHeaders .tabHeader:hover,
|
|
|
|
.tabHeaders .tabHeader:hover a {
|
|
|
|
color: #000;
|
|
|
|
}
|
|
|
|
.tabsContainer {
|
|
|
|
clear: left;
|
|
|
|
}
|
|
|
|
.tabsContainer .tab {
|
|
|
|
padding: 15px;
|
|
|
|
}
|
2015-08-27 14:22:58 +03:00
|
|
|
|
|
|
|
/* popover menu styles (use together with "bubble" class) */
|
|
|
|
.popovermenu .menuitem,
|
|
|
|
.popovermenu .menuitem>span {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.popovermenu .menuitem {
|
|
|
|
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
|
|
|
|
filter: alpha(opacity=50);
|
|
|
|
opacity: .5;
|
|
|
|
}
|
|
|
|
|
|
|
|
.popovermenu .menuitem:hover,
|
|
|
|
.popovermenu .menuitem:focus {
|
|
|
|
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
|
|
|
|
filter: alpha(opacity=100);
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.popovermenu {
|
|
|
|
padding: 4px 12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.popovermenu li {
|
|
|
|
padding: 5px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.popovermenu .menuitem img {
|
|
|
|
padding: initial;
|
|
|
|
}
|
|
|
|
|
|
|
|
.popovermenu a.menuitem,
|
|
|
|
.popovermenu label.menuitem,
|
|
|
|
.popovermenu .menuitem {
|
|
|
|
padding: 10px;
|
|
|
|
margin: -10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.popovermenu.hidden {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.popovermenu .menuitem {
|
|
|
|
display: block;
|
|
|
|
line-height: 30px;
|
|
|
|
padding-left: 5px;
|
|
|
|
color: #000;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.popovermenu .menuitem .icon,
|
|
|
|
.popovermenu .menuitem .no-icon {
|
|
|
|
display: inline-block;
|
|
|
|
width: 16px;
|
2015-09-03 01:58:03 +03:00
|
|
|
margin-right: 10px;
|
2015-08-27 14:22:58 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.popovermenu .menuitem {
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
|
|
|
|
|
|
|
.popovermenu li:hover .menuitem {
|
|
|
|
opacity: 1;
|
|
|
|
}
|