Blame view
sources/apps/fluxx_compensator/css/fluxx.css
3.22 KB
|
42e4f8d60
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 |
/**
* @package fluxx-compensator an ownCloud app
* @category base
* @author Christian Reiner
* @copyright 2012-2013 Christian Reiner <foss@christian-reiner.info>
* @license GNU Affero General Public license (AGPL)
* @link information http://apps.owncloud.com/content/show.php?content=157091
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
* License as published by the Free Software Foundation; either
* version 3 of the license, or any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU AFFERO GENERAL PUBLIC LICENSE for more details.
*
* You should have received a copy of the GNU Affero General Public
* License along with this library.
* If not, see <http://www.gnu.org/licenses/>.
*
*/
/**
* @file css/fluxx.css
* @brief Style definitions of the apps view
* @author Christian Reiner
*/
/* style the 'handle' itself used to switch the navigation */
.fluxx-handle {
opacity: 0.6;
position: fixed;
width: 12px;
height: 12px;
border: 0.5px solid #666;
cursor: pointer;
line-height: 14px;
padding: 2px;
}
.fluxx-handle.fluxx-horizontal {
border-left: 0;
border-top-right-radius: 10px;
border-bottom-right-radius: 10px;
box-shadow: 0 0 2px #666;
}
.fluxx-handle.fluxx-vertical {
border-top: 0;
border-bottom-left-radius: 10px;
border-bottom-right-radius: 10px;
box-shadow: 0 0 2px #666;
}
.fluxx-handle.fluxx-shown {
background-color: #ddd;
box-shadow: 0 0 2px #999;
}
/* flip and move handle when panel is shown */
.fluxx-handle.fluxx-horizontal.fluxx-shown {
transform: scale(-1,1) translate(15px,0);
-o-transform: scale(-1,1) translate(15px,0);
-ms-transform: scale(-1,1) translate(15px,0);
-moz-transform: scale(-1,1) translate(15px,0);
-khtml-transform: scale(-1,1) translate(15px,0);
-webkit-transform: scale(-1,1) translate(15px,0);
}
.fluxx-handle.fluxx-vertical.fluxx-shown {
transform: scale(1,-1) translate(0,15px);
-o-transform: scale(1,-1) translate(0,15px);
-ms-transform: scale(1,-1) translate(0,15px);
-moz-transform: scale(1,-1) translate(0,15px);
-khtml-transform: scale(1,-1) translate(0,15px);
-webkit-transform: scale(1,-1) translate(0,15px);
}
.fluxx-handle img {
margin: 0;
padding: 0;
width: 12px;
height: 12px;
border: 0;
box-shadow: 0 0 0 0;
cursor: inherit;
opacity: 0.8;
user-select: none;
-o-user-select: none;
-ms-user-select: none;
-moz-user-select: none;
-khtml-user-select: none;
-webkit-user-select: none;
}
html .fluxx-handle.fluxx-horizontal img {
transform: rotate(90deg);
-o-transform: rotate(90deg);
-ms-transform: rotate(90deg);
-moz-transform: rotate(90deg);
-khtml-transform: rotate(90deg);
-webkit-transform: rotate(90deg);
}
html .fluxx-handle.fluxx-vertical img {
transform: rotate(180deg);
-o-transform: rotate(180deg);
-ms-transform: rotate(180deg);
-moz-transform: rotate(180deg);
-khtml-transform: rotate(180deg);
-webkit-transform: rotate(180deg);
}
/* switch cursor to a 'move' indication during move mode */
html.fluxx-handle-move-H * {
cursor: col-resize !important;
}
html.fluxx-handle-move-N * {
cursor: row-resize !important;
}
|