server/src/main/webapp/static/css/index.css
author ymh <ymh.work@gmail.com>
Wed, 03 Apr 2013 17:47:23 +0200
changeset 129 01c862ada33c
parent 127 906fed13c1e1
child 136 a822178766ce
permissions -rw-r--r--
Add delete for spaces, check that there is no linked projects
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
97
f7d611f50e58 add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents: 87
diff changeset
     1
f7d611f50e58 add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents: 87
diff changeset
     2
::-moz-selection { background: initial; color: initial; text-shadow: initial; }
f7d611f50e58 add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents: 87
diff changeset
     3
::selection { background: initial; color: initial; text-shadow: initial; }
f7d611f50e58 add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents: 87
diff changeset
     4
f7d611f50e58 add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents: 87
diff changeset
     5
body,html {
f7d611f50e58 add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents: 87
diff changeset
     6
	height: 100%;
f7d611f50e58 add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents: 87
diff changeset
     7
}
f7d611f50e58 add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents: 87
diff changeset
     8
81
555a094e2000 Changed CSS
veltr
parents: 47
diff changeset
     9
body, h1, h2, table, tbody, thead, tr, td, th {
555a094e2000 Changed CSS
veltr
parents: 47
diff changeset
    10
    border: none; margin: 0; padding: 0; text-align: left; font-size: 100%;
555a094e2000 Changed CSS
veltr
parents: 47
diff changeset
    11
}
555a094e2000 Changed CSS
veltr
parents: 47
diff changeset
    12
body {
555a094e2000 Changed CSS
veltr
parents: 47
diff changeset
    13
    margin: 0; padding: 0; font-family: Arial, Helvetica, sans-serif; background: #F6F6F6; color: #333333;
555a094e2000 Changed CSS
veltr
parents: 47
diff changeset
    14
}
555a094e2000 Changed CSS
veltr
parents: 47
diff changeset
    15
h1 {
555a094e2000 Changed CSS
veltr
parents: 47
diff changeset
    16
    margin-bottom: 5px; padding: 15px; border-bottom: 2px solid #ffffff; background: #333333; color: #ffffff;
555a094e2000 Changed CSS
veltr
parents: 47
diff changeset
    17
    font-weight: bold; font-size: 30px;
555a094e2000 Changed CSS
veltr
parents: 47
diff changeset
    18
}
555a094e2000 Changed CSS
veltr
parents: 47
diff changeset
    19
h2 {
555a094e2000 Changed CSS
veltr
parents: 47
diff changeset
    20
    margin: 12px 15px 2px;
555a094e2000 Changed CSS
veltr
parents: 47
diff changeset
    21
}
555a094e2000 Changed CSS
veltr
parents: 47
diff changeset
    22
h3 {
555a094e2000 Changed CSS
veltr
parents: 47
diff changeset
    23
    color: #999999; font-size: 15px; font-weight: bold;
555a094e2000 Changed CSS
veltr
parents: 47
diff changeset
    24
    font-style: italic; margin: 5px 30px;
555a094e2000 Changed CSS
veltr
parents: 47
diff changeset
    25
}
555a094e2000 Changed CSS
veltr
parents: 47
diff changeset
    26
a {
555a094e2000 Changed CSS
veltr
parents: 47
diff changeset
    27
    text-decoration: none; color: #3030a0;
555a094e2000 Changed CSS
veltr
parents: 47
diff changeset
    28
}
555a094e2000 Changed CSS
veltr
parents: 47
diff changeset
    29
a:hover {
555a094e2000 Changed CSS
veltr
parents: 47
diff changeset
    30
    text-decoration: underline;
555a094e2000 Changed CSS
veltr
parents: 47
diff changeset
    31
}
555a094e2000 Changed CSS
veltr
parents: 47
diff changeset
    32
table {
555a094e2000 Changed CSS
veltr
parents: 47
diff changeset
    33
    border-collapse: collapse; margin: 5px 15px; border: 1px solid #CCCCCC;
555a094e2000 Changed CSS
veltr
parents: 47
diff changeset
    34
}
555a094e2000 Changed CSS
veltr
parents: 47
diff changeset
    35
th, td {
555a094e2000 Changed CSS
veltr
parents: 47
diff changeset
    36
    padding: 4px 16px 4px 4px; border: 1px solid #cccccc;
555a094e2000 Changed CSS
veltr
parents: 47
diff changeset
    37
}
555a094e2000 Changed CSS
veltr
parents: 47
diff changeset
    38
thead {
555a094e2000 Changed CSS
veltr
parents: 47
diff changeset
    39
    font-size: 16px;
555a094e2000 Changed CSS
veltr
parents: 47
diff changeset
    40
}
555a094e2000 Changed CSS
veltr
parents: 47
diff changeset
    41
tbody {
555a094e2000 Changed CSS
veltr
parents: 47
diff changeset
    42
    font-size: 14px;
555a094e2000 Changed CSS
veltr
parents: 47
diff changeset
    43
}
555a094e2000 Changed CSS
veltr
parents: 47
diff changeset
    44
tbody tr:nth-child(even) {
555a094e2000 Changed CSS
veltr
parents: 47
diff changeset
    45
    background: #fafafa;
555a094e2000 Changed CSS
veltr
parents: 47
diff changeset
    46
}
555a094e2000 Changed CSS
veltr
parents: 47
diff changeset
    47
tbody tr:nth-child(odd) {
555a094e2000 Changed CSS
veltr
parents: 47
diff changeset
    48
    background: #f0f0f0;
555a094e2000 Changed CSS
veltr
parents: 47
diff changeset
    49
}
555a094e2000 Changed CSS
veltr
parents: 47
diff changeset
    50
thead tr {
555a094e2000 Changed CSS
veltr
parents: 47
diff changeset
    51
    background: #666666; color: #f0e0e0;
555a094e2000 Changed CSS
veltr
parents: 47
diff changeset
    52
}
555a094e2000 Changed CSS
veltr
parents: 47
diff changeset
    53
tbody tr:hover {
555a094e2000 Changed CSS
veltr
parents: 47
diff changeset
    54
    background: #ffffff;
555a094e2000 Changed CSS
veltr
parents: 47
diff changeset
    55
}
555a094e2000 Changed CSS
veltr
parents: 47
diff changeset
    56
87
6c810f746837 Externalize properties
ymh <ymh.work@gmail.com>
parents: 81
diff changeset
    57
.pagination-container {
6c810f746837 Externalize properties
ymh <ymh.work@gmail.com>
parents: 81
diff changeset
    58
	margin: 12px 15px 2px;
6c810f746837 Externalize properties
ymh <ymh.work@gmail.com>
parents: 81
diff changeset
    59
	font-size: 14px;
6c810f746837 Externalize properties
ymh <ymh.work@gmail.com>
parents: 81
diff changeset
    60
}
6c810f746837 Externalize properties
ymh <ymh.work@gmail.com>
parents: 81
diff changeset
    61
6c810f746837 Externalize properties
ymh <ymh.work@gmail.com>
parents: 81
diff changeset
    62
.pagination-container a, .pagination-container span {
6c810f746837 Externalize properties
ymh <ymh.work@gmail.com>
parents: 81
diff changeset
    63
	margin: 0 1px 0 1px;
6c810f746837 Externalize properties
ymh <ymh.work@gmail.com>
parents: 81
diff changeset
    64
}
6c810f746837 Externalize properties
ymh <ymh.work@gmail.com>
parents: 81
diff changeset
    65
97
f7d611f50e58 add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents: 87
diff changeset
    66
div#container {
f7d611f50e58 add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents: 87
diff changeset
    67
    position:relative; /* needed for footer positioning*/
f7d611f50e58 add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents: 87
diff changeset
    68
    margin:0 auto; /* center, not in IE5 */
f7d611f50e58 add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents: 87
diff changeset
    69
f7d611f50e58 add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents: 87
diff changeset
    70
    height:auto !important; /* real browsers */
f7d611f50e58 add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents: 87
diff changeset
    71
    height:100%; /* IE6: treaded as min-height*/
f7d611f50e58 add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents: 87
diff changeset
    72
f7d611f50e58 add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents: 87
diff changeset
    73
    min-height:100%; /* real browsers */
f7d611f50e58 add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents: 87
diff changeset
    74
}
f7d611f50e58 add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents: 87
diff changeset
    75
f7d611f50e58 add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents: 87
diff changeset
    76
div#wrapper {
f7d611f50e58 add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents: 87
diff changeset
    77
    padding-bottom: 1em; /* bottom padding for footer */
f7d611f50e58 add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents: 87
diff changeset
    78
}
f7d611f50e58 add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents: 87
diff changeset
    79
127
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
    80
footer#footer {
97
f7d611f50e58 add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents: 87
diff changeset
    81
    position:absolute;
f7d611f50e58 add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents: 87
diff changeset
    82
    bottom:0;
f7d611f50e58 add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents: 87
diff changeset
    83
    width:100%;
f7d611f50e58 add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents: 87
diff changeset
    84
    font-size: 12px;
f7d611f50e58 add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents: 87
diff changeset
    85
}
f7d611f50e58 add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents: 87
diff changeset
    86
 
127
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
    87
footer#footer div {
97
f7d611f50e58 add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents: 87
diff changeset
    88
     float:right;
f7d611f50e58 add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents: 87
diff changeset
    89
     margin: 15px 10px 0 0;
f7d611f50e58 add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents: 87
diff changeset
    90
}
f7d611f50e58 add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents: 87
diff changeset
    91
f7d611f50e58 add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents: 87
diff changeset
    92
#home-link,#home-link:link,#home-link:hover,#home-link:active,#home-link:visited {
f7d611f50e58 add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents: 87
diff changeset
    93
	text-decoration: none;
f7d611f50e58 add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents: 87
diff changeset
    94
	color: #ffffff;
f7d611f50e58 add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents: 87
diff changeset
    95
}
f7d611f50e58 add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents: 87
diff changeset
    96
f7d611f50e58 add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents: 87
diff changeset
    97
87
6c810f746837 Externalize properties
ymh <ymh.work@gmail.com>
parents: 81
diff changeset
    98
#inner {
47
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff changeset
    99
   width: 300px;
81
555a094e2000 Changed CSS
veltr
parents: 47
diff changeset
   100
   margin: 10px auto;
47
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff changeset
   101
 }
87
6c810f746837 Externalize properties
ymh <ymh.work@gmail.com>
parents: 81
diff changeset
   102
 
47
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff changeset
   103
 #button {
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff changeset
   104
   margin: 0 auto;
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff changeset
   105
   border-radius: 3px;
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff changeset
   106
   text-align: center;
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff changeset
   107
   font: 36px verdana,arial,sans-serif;
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff changeset
   108
   color: white;
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff changeset
   109
   text-shadow: 0 -1px 0 rgba(0,0,0,.8);
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff changeset
   110
   height: 70px;
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff changeset
   111
   line-height: 70px;
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff changeset
   112
   background: #555;
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff changeset
   113
   background: -webkit-linear-gradient(#5F5F5F,#565656 50%,#4C4C4C 51%,#373737);
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff changeset
   114
   background: -moz-linear-gradient(#5F5F5F,#565656 50%,#4C4C4C 51%,#373737);
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff changeset
   115
   background: -ms-linear-gradient(#5F5F5F,#565656 50%,#4C4C4C 51%,#373737);
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff changeset
   116
   background: -o-linear-gradient(#5F5F5F,#565656 50%,#4C4C4C 51%,#373737);
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff changeset
   117
   box-shadow: inset 0 1px 3px rgba(0,0,0,0.9);
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff changeset
   118
 }
87
6c810f746837 Externalize properties
ymh <ymh.work@gmail.com>
parents: 81
diff changeset
   119
 
47
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff changeset
   120
 #button:hover {
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff changeset
   121
   cursor: pointer;
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff changeset
   122
   background: #666;
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff changeset
   123
   background: -webkit-linear-gradient(#707070,#666666 50%,#5B5B5B 51%,#474747);
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff changeset
   124
   background: -moz-linear-gradient(#707070,#666666 50%,#5B5B5B 51%,#474747);
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff changeset
   125
   background: -ms-linear-gradient(#707070,#666666 50%,#5B5B5B 51%,#474747);
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff changeset
   126
   background: -o-linear-gradient(#707070,#666666 50%,#5B5B5B 51%,#474747);
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff changeset
   127
 }
87
6c810f746837 Externalize properties
ymh <ymh.work@gmail.com>
parents: 81
diff changeset
   128
 
47
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff changeset
   129
 #button:active {
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff changeset
   130
   box-shadow: inset 0 1px 12px rgba(0,0,0,0.9);
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff changeset
   131
   background: #444;
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff changeset
   132
 }
87
6c810f746837 Externalize properties
ymh <ymh.work@gmail.com>
parents: 81
diff changeset
   133
 
47
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff changeset
   134
 #label {
87
6c810f746837 Externalize properties
ymh <ymh.work@gmail.com>
parents: 81
diff changeset
   135
   font: 30px verdana,arial,sans-serif bold;
6c810f746837 Externalize properties
ymh <ymh.work@gmail.com>
parents: 81
diff changeset
   136
   text-align: center;
47
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff changeset
   137
   text-shadow: 0 1px 1px #fff;
87
6c810f746837 Externalize properties
ymh <ymh.work@gmail.com>
parents: 81
diff changeset
   138
   height: 70px;
6c810f746837 Externalize properties
ymh <ymh.work@gmail.com>
parents: 81
diff changeset
   139
   line-height: 70px;   
47
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff changeset
   140
   margin: 16px auto 0;
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff changeset
   141
 }
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff changeset
   142
 form {
87
6c810f746837 Externalize properties
ymh <ymh.work@gmail.com>
parents: 81
diff changeset
   143
   height: 38px;   
47
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff changeset
   144
   position: relative;
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff changeset
   145
 }
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff changeset
   146
 button, input {
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff changeset
   147
   font-weight: bold;
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff changeset
   148
   font-size: 15px;
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff changeset
   149
 }
87
6c810f746837 Externalize properties
ymh <ymh.work@gmail.com>
parents: 81
diff changeset
   150
  
127
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   151
 #inner input[type="text"] {
87
6c810f746837 Externalize properties
ymh <ymh.work@gmail.com>
parents: 81
diff changeset
   152
   background: #fff;
6c810f746837 Externalize properties
ymh <ymh.work@gmail.com>
parents: 81
diff changeset
   153
   border: 1px solid #bbb;
47
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff changeset
   154
   border-radius: 3px;
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff changeset
   155
   box-sizing: border-box;
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff changeset
   156
   -moz-box-sizing: border-box;   
87
6c810f746837 Externalize properties
ymh <ymh.work@gmail.com>
parents: 81
diff changeset
   157
   padding: 0 10px 0 10px;
47
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff changeset
   158
   *padding: 0; /* IE7 hack */
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff changeset
   159
   width: 100%;
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff changeset
   160
   height: 100%;
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff changeset
   161
   outline: none;
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff changeset
   162
   position: absolute;
127
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   163
}
97
f7d611f50e58 add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents: 87
diff changeset
   164
 
127
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   165
 #inner button[type="submit"] {
47
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff changeset
   166
   position: absolute;
87
6c810f746837 Externalize properties
ymh <ymh.work@gmail.com>
parents: 81
diff changeset
   167
   right: -45px;
47
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff changeset
   168
   width: 45px;
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff changeset
   169
   height: 38px;
127
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   170
}
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   171
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   172
#objects-content {
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   173
    float: left;
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   174
}
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   175
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   176
#objects-content table {
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   177
    width: 100%;
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   178
}
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   179
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   180
.object-tools {
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   181
    font-size: 11px;
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   182
    font-weight: bold;
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   183
    font-family: Arial,Helvetica,sans-serif;
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   184
    padding-left: 0;
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   185
    float: right;
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   186
    position: relative;
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   187
    margin: -2.4em -15px -2em 0;
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   188
}
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   189
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   190
.object-tools li {
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   191
	list-style: none;
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   192
}
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   193
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   194
.object-tools a:link, .object-tools a:visited {
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   195
    display: block;
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   196
    float: left;
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   197
    color: white;
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   198
    padding: .1em 8px .1em 8px;
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   199
    height: 14px;
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   200
    background: #666666;
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   201
    text-decoration: none;
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   202
}
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   203
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   204
.spaces-table-title {
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   205
	width: 250px;
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   206
}
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   207
.spaces-table-created {
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   208
    width: 120px;
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   209
}
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   210
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   211
.spaces-table-actions {
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   212
    width: 40px;
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   213
}
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   214
129
01c862ada33c Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents: 127
diff changeset
   215
.spaces-table-actions-disabled, .spaces-table-actions-disabled:link, .spaces-table-actions-disabled:visited, .spaces-table-actions-disabled:hover, .spaces-table-actions-disabled:active, .spaces-table-actions-disabled:focus {
01c862ada33c Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents: 127
diff changeset
   216
	color: gray;
01c862ada33c Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents: 127
diff changeset
   217
	text-decoration: none;
01c862ada33c Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents: 127
diff changeset
   218
	cursor: default;
01c862ada33c Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents: 127
diff changeset
   219
}
01c862ada33c Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents: 127
diff changeset
   220
127
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   221
td.spaces-table-created {
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   222
	text-align: center;
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   223
}
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   224
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   225
.form-fields label, .form-fields input, .form-fields textarea, .form-fields #binConfigDiv {
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   226
  display:inline-block;
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   227
}
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   228
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   229
.form-fields label {
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   230
  width:150px;
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   231
  float: left;
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   232
}
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   233
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   234
.form-fields input, .form-fields textarea {
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   235
  width:200px;
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   236
}
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   237
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   238
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   239
#space-form-container {
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   240
	margin: 12px 0px 0px 15px;
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   241
}
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   242
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   243
.form-fields div {
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   244
	margin-bottom: 12px; 
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   245
}
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   246
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   247
.form-error {
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   248
	color: red;
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   249
}
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   250
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   251
#binConfigDiv { 
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   252
    position: relative;
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   253
    width: 650px;
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   254
    height: 150px;
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   255
}
129
01c862ada33c Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents: 127
diff changeset
   256
127
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   257
#binConfigDiv div {
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   258
    margin-bottom: 0; 
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   259
}
129
01c862ada33c Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents: 127
diff changeset
   260
01c862ada33c Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents: 127
diff changeset
   261
#space-delete-container {
01c862ada33c Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents: 127
diff changeset
   262
	margin-left: 12px;
01c862ada33c Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents: 127
diff changeset
   263
	margin-top: 1em;
01c862ada33c Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents: 127
diff changeset
   264
}
01c862ada33c Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents: 127
diff changeset
   265
01c862ada33c Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents: 127
diff changeset
   266
01c862ada33c Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents: 127
diff changeset
   267
#space-delete-confirm-buttons {
01c862ada33c Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents: 127
diff changeset
   268
	margin-top: 1em;
01c862ada33c Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents: 127
diff changeset
   269
}
01c862ada33c Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents: 127
diff changeset
   270
01c862ada33c Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents: 127
diff changeset
   271
#space-delete-confirm-buttons form {
01c862ada33c Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents: 127
diff changeset
   272
	margin: 0;
01c862ada33c Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents: 127
diff changeset
   273
	padding: 0;
01c862ada33c Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents: 127
diff changeset
   274
	display: inline;
01c862ada33c Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents: 127
diff changeset
   275
}
01c862ada33c Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents: 127
diff changeset
   276
01c862ada33c Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents: 127
diff changeset
   277
#space-delete-confirm-buttons input[type=submit] {
01c862ada33c Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents: 127
diff changeset
   278
	margin-right: 12px;
01c862ada33c Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents: 127
diff changeset
   279
}