corrade-nucleus-nucleons – Diff between revs 29 and 30

Subversion Repositories:
Rev:
Only display areas with differencesIgnore whitespace
Rev 29 Rev 30
-   1 #window-manager-desktop {
-   2 width: 100%;
-   3 height: 100vh;
-   4 }
-   5  
1 .window-manager-window { 6 .window-manager-window {
2 width: 640px; 7 width: 640px;
3 height: 480px; 8 height: 480px;
4 9
5 overflow: auto; 10 overflow: auto;
6 11
7 border: solid 4px #ddddff !important; 12 border: solid 4px #ddddff !important;
8 padding: 0; 13 padding: 0;
9   14  
10 -webkit-transform: translate(0px, 0px); 15 -webkit-transform: translate(0px, 0px);
11 transform: translate(0px, 0px); 16 transform: translate(0px, 0px);
12   17  
13 position: relative; 18 position: fixed;
14 z-index: 1; 19 z-index: 2;
15   20  
16 -ms-touch-action: none; 21 -ms-touch-action: none;
17 touch-action: none; 22 touch-action: none;
18 23
19 display: inline-block; 24 display: inline-block;
20 } 25 }
-   26  
-   27 .window-manager-icon {
-   28 background: rgba(0, 0, 0, 0);
-   29 z-index: 1;
-   30  
-   31 width: 64px;
-   32 height: 64px;
-   33
-   34 overflow: auto;
-   35
-   36 border: none !important;
-   37 padding: 0;
-   38  
-   39 -webkit-transform: translate(0px, 0px);
-   40 transform: translate(0px, 0px);
-   41  
-   42 position: fixed;
-   43  
-   44 -ms-touch-action: none;
-   45 touch-action: none;
-   46
-   47 display: inline-block;
-   48 }
21   49