server/src/main/webapp/static/css/index.css
author ymh <ymh.work@gmail.com>
Thu, 04 Apr 2013 18:20:59 +0200
changeset 137 efc0fce30814
parent 136 a822178766ce
child 141 64af5273ac5e
permissions -rw-r--r--
Add filter on 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 {
136
a822178766ce Add column sort for projects
ymh <ymh.work@gmail.com>
parents: 129
diff changeset
    36
    padding: 4px 12px 4px 4px; border: 1px solid #cccccc;
81
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
 
137
efc0fce30814 Add filter on projects
ymh <ymh.work@gmail.com>
parents: 136
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;
137
efc0fce30814 Add filter on projects
ymh <ymh.work@gmail.com>
parents: 136
diff changeset
   141
}
efc0fce30814 Add filter on projects
ymh <ymh.work@gmail.com>
parents: 136
diff changeset
   142
efc0fce30814 Add filter on projects
ymh <ymh.work@gmail.com>
parents: 136
diff changeset
   143
form {
87
6c810f746837 Externalize properties
ymh <ymh.work@gmail.com>
parents: 81
diff changeset
   144
   height: 38px;   
47
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff changeset
   145
   position: relative;
137
efc0fce30814 Add filter on projects
ymh <ymh.work@gmail.com>
parents: 136
diff changeset
   146
}
efc0fce30814 Add filter on projects
ymh <ymh.work@gmail.com>
parents: 136
diff changeset
   147
efc0fce30814 Add filter on projects
ymh <ymh.work@gmail.com>
parents: 136
diff changeset
   148
button, input {
47
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff changeset
   149
   font-weight: bold;
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff changeset
   150
   font-size: 15px;
137
efc0fce30814 Add filter on projects
ymh <ymh.work@gmail.com>
parents: 136
diff changeset
   151
}
87
6c810f746837 Externalize properties
ymh <ymh.work@gmail.com>
parents: 81
diff changeset
   152
  
137
efc0fce30814 Add filter on projects
ymh <ymh.work@gmail.com>
parents: 136
diff changeset
   153
#inner input[type="text"] {
87
6c810f746837 Externalize properties
ymh <ymh.work@gmail.com>
parents: 81
diff changeset
   154
   background: #fff;
6c810f746837 Externalize properties
ymh <ymh.work@gmail.com>
parents: 81
diff changeset
   155
   border: 1px solid #bbb;
47
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff changeset
   156
   border-radius: 3px;
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff changeset
   157
   box-sizing: border-box;
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff changeset
   158
   -moz-box-sizing: border-box;   
87
6c810f746837 Externalize properties
ymh <ymh.work@gmail.com>
parents: 81
diff changeset
   159
   padding: 0 10px 0 10px;
47
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff changeset
   160
   *padding: 0; /* IE7 hack */
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff changeset
   161
   width: 100%;
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff changeset
   162
   height: 100%;
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff changeset
   163
   outline: none;
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff changeset
   164
   position: absolute;
127
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   165
}
97
f7d611f50e58 add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents: 87
diff changeset
   166
 
137
efc0fce30814 Add filter on projects
ymh <ymh.work@gmail.com>
parents: 136
diff changeset
   167
#inner button[type="submit"] {
47
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff changeset
   168
   position: absolute;
87
6c810f746837 Externalize properties
ymh <ymh.work@gmail.com>
parents: 81
diff changeset
   169
   right: -45px;
47
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff changeset
   170
   width: 45px;
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents:
diff changeset
   171
   height: 38px;
127
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   172
}
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   173
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   174
#objects-content {
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   175
    float: left;
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   176
}
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   177
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   178
#objects-content table {
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   179
    width: 100%;
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   180
}
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   181
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   182
.object-tools {
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   183
    font-size: 11px;
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   184
    font-weight: bold;
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   185
    font-family: Arial,Helvetica,sans-serif;
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   186
    padding-left: 0;
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   187
    float: right;
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   188
    position: relative;
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   189
    margin: -2.4em -15px -2em 0;
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   190
}
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   191
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   192
.object-tools li {
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   193
	list-style: none;
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   194
}
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   195
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   196
.object-tools a:link, .object-tools a:visited {
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   197
    display: block;
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   198
    float: left;
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   199
    color: white;
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   200
    padding: .1em 8px .1em 8px;
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   201
    height: 14px;
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   202
    background: #666666;
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   203
    text-decoration: none;
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   204
}
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   205
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   206
.spaces-table-title {
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   207
	width: 250px;
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   208
}
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   209
.spaces-table-created {
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   210
    width: 120px;
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   211
}
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   212
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   213
.spaces-table-actions {
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   214
    width: 40px;
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   215
}
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   216
129
01c862ada33c Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents: 127
diff changeset
   217
.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
   218
	color: gray;
01c862ada33c Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents: 127
diff changeset
   219
	text-decoration: none;
01c862ada33c Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents: 127
diff changeset
   220
	cursor: default;
01c862ada33c Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents: 127
diff changeset
   221
}
01c862ada33c Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents: 127
diff changeset
   222
127
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   223
td.spaces-table-created {
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   224
	text-align: center;
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   225
}
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   226
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   227
.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
   228
  display:inline-block;
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   229
}
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   230
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   231
.form-fields label {
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   232
  width:150px;
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   233
  float: left;
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   234
}
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   235
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   236
.form-fields input, .form-fields textarea {
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   237
  width:200px;
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
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   240
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   241
#space-form-container {
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   242
	margin: 12px 0px 0px 15px;
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   243
}
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   244
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   245
.form-fields div {
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   246
	margin-bottom: 12px; 
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   247
}
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   248
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   249
.form-error {
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   250
	color: red;
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   251
}
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   252
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   253
#binConfigDiv { 
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   254
    position: relative;
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   255
    width: 650px;
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   256
    height: 150px;
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   257
}
129
01c862ada33c Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents: 127
diff changeset
   258
127
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   259
#binConfigDiv div {
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   260
    margin-bottom: 0; 
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 97
diff changeset
   261
}
129
01c862ada33c Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents: 127
diff changeset
   262
01c862ada33c Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents: 127
diff changeset
   263
#space-delete-container {
01c862ada33c Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents: 127
diff changeset
   264
	margin-left: 12px;
01c862ada33c Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents: 127
diff changeset
   265
	margin-top: 1em;
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
01c862ada33c Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents: 127
diff changeset
   268
01c862ada33c Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents: 127
diff changeset
   269
#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
   270
	margin-top: 1em;
01c862ada33c Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents: 127
diff changeset
   271
}
01c862ada33c Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents: 127
diff changeset
   272
01c862ada33c Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents: 127
diff changeset
   273
#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
   274
	margin: 0;
01c862ada33c Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents: 127
diff changeset
   275
	padding: 0;
01c862ada33c Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents: 127
diff changeset
   276
	display: inline;
01c862ada33c Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents: 127
diff changeset
   277
}
01c862ada33c Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents: 127
diff changeset
   278
01c862ada33c Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents: 127
diff changeset
   279
#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
   280
	margin-right: 12px;
01c862ada33c Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents: 127
diff changeset
   281
}
136
a822178766ce Add column sort for projects
ymh <ymh.work@gmail.com>
parents: 129
diff changeset
   282
137
efc0fce30814 Add filter on projects
ymh <ymh.work@gmail.com>
parents: 136
diff changeset
   283
#project-filter-container {
efc0fce30814 Add filter on projects
ymh <ymh.work@gmail.com>
parents: 136
diff changeset
   284
    margin: 12px 0 0 15px;    
efc0fce30814 Add filter on projects
ymh <ymh.work@gmail.com>
parents: 136
diff changeset
   285
}
efc0fce30814 Add filter on projects
ymh <ymh.work@gmail.com>
parents: 136
diff changeset
   286
efc0fce30814 Add filter on projects
ymh <ymh.work@gmail.com>
parents: 136
diff changeset
   287
#project-filter-container input[type="text"] {
efc0fce30814 Add filter on projects
ymh <ymh.work@gmail.com>
parents: 136
diff changeset
   288
   background: #fff;
efc0fce30814 Add filter on projects
ymh <ymh.work@gmail.com>
parents: 136
diff changeset
   289
   border: 1px solid #bbb;
efc0fce30814 Add filter on projects
ymh <ymh.work@gmail.com>
parents: 136
diff changeset
   290
   border-radius: 3px;
efc0fce30814 Add filter on projects
ymh <ymh.work@gmail.com>
parents: 136
diff changeset
   291
   padding: 2px 10px 3px;
efc0fce30814 Add filter on projects
ymh <ymh.work@gmail.com>
parents: 136
diff changeset
   292
   box-sizing: border-box;
efc0fce30814 Add filter on projects
ymh <ymh.work@gmail.com>
parents: 136
diff changeset
   293
   -moz-box-sizing: border-box;
efc0fce30814 Add filter on projects
ymh <ymh.work@gmail.com>
parents: 136
diff changeset
   294
   outline: none;
efc0fce30814 Add filter on projects
ymh <ymh.work@gmail.com>
parents: 136
diff changeset
   295
   font-weight: normal;
efc0fce30814 Add filter on projects
ymh <ymh.work@gmail.com>
parents: 136
diff changeset
   296
   font-size: 15px;
efc0fce30814 Add filter on projects
ymh <ymh.work@gmail.com>
parents: 136
diff changeset
   297
}
efc0fce30814 Add filter on projects
ymh <ymh.work@gmail.com>
parents: 136
diff changeset
   298
 
efc0fce30814 Add filter on projects
ymh <ymh.work@gmail.com>
parents: 136
diff changeset
   299
#project-filter-container button[type="submit"] {
efc0fce30814 Add filter on projects
ymh <ymh.work@gmail.com>
parents: 136
diff changeset
   300
	
efc0fce30814 Add filter on projects
ymh <ymh.work@gmail.com>
parents: 136
diff changeset
   301
}
efc0fce30814 Add filter on projects
ymh <ymh.work@gmail.com>
parents: 136
diff changeset
   302
136
a822178766ce Add column sort for projects
ymh <ymh.work@gmail.com>
parents: 129
diff changeset
   303
.proj-sort-form {
a822178766ce Add column sort for projects
ymh <ymh.work@gmail.com>
parents: 129
diff changeset
   304
	float: right;
a822178766ce Add column sort for projects
ymh <ymh.work@gmail.com>
parents: 129
diff changeset
   305
	height: auto;
a822178766ce Add column sort for projects
ymh <ymh.work@gmail.com>
parents: 129
diff changeset
   306
}
a822178766ce Add column sort for projects
ymh <ymh.work@gmail.com>
parents: 129
diff changeset
   307
a822178766ce Add column sort for projects
ymh <ymh.work@gmail.com>
parents: 129
diff changeset
   308
.proj-sort-form input[type=submit] {
a822178766ce Add column sort for projects
ymh <ymh.work@gmail.com>
parents: 129
diff changeset
   309
    width: 16px;
a822178766ce Add column sort for projects
ymh <ymh.work@gmail.com>
parents: 129
diff changeset
   310
    height: 16px;
a822178766ce Add column sort for projects
ymh <ymh.work@gmail.com>
parents: 129
diff changeset
   311
    border: 0;	
a822178766ce Add column sort for projects
ymh <ymh.work@gmail.com>
parents: 129
diff changeset
   312
}
a822178766ce Add column sort for projects
ymh <ymh.work@gmail.com>
parents: 129
diff changeset
   313
a822178766ce Add column sort for projects
ymh <ymh.work@gmail.com>
parents: 129
diff changeset
   314
.proj-sort-form input[type=submit]:HOVER {
a822178766ce Add column sort for projects
ymh <ymh.work@gmail.com>
parents: 129
diff changeset
   315
	opacity: .5;
a822178766ce Add column sort for projects
ymh <ymh.work@gmail.com>
parents: 129
diff changeset
   316
}
a822178766ce Add column sort for projects
ymh <ymh.work@gmail.com>
parents: 129
diff changeset
   317
a822178766ce Add column sort for projects
ymh <ymh.work@gmail.com>
parents: 129
diff changeset
   318
.proj-sortable-col {
a822178766ce Add column sort for projects
ymh <ymh.work@gmail.com>
parents: 129
diff changeset
   319
	background: url("../img/sort_arrows.png") 0 0;	
a822178766ce Add column sort for projects
ymh <ymh.work@gmail.com>
parents: 129
diff changeset
   320
}
a822178766ce Add column sort for projects
ymh <ymh.work@gmail.com>
parents: 129
diff changeset
   321
a822178766ce Add column sort for projects
ymh <ymh.work@gmail.com>
parents: 129
diff changeset
   322
.proj-sort-desc-col {
a822178766ce Add column sort for projects
ymh <ymh.work@gmail.com>
parents: 129
diff changeset
   323
    background: url("../img/sort_arrows.png") 0 -17px;  
a822178766ce Add column sort for projects
ymh <ymh.work@gmail.com>
parents: 129
diff changeset
   324
}
a822178766ce Add column sort for projects
ymh <ymh.work@gmail.com>
parents: 129
diff changeset
   325
a822178766ce Add column sort for projects
ymh <ymh.work@gmail.com>
parents: 129
diff changeset
   326
.proj-sort-asc-col {
a822178766ce Add column sort for projects
ymh <ymh.work@gmail.com>
parents: 129
diff changeset
   327
    background: url("../img/sort_arrows.png") 0 -33px;  
a822178766ce Add column sort for projects
ymh <ymh.work@gmail.com>
parents: 129
diff changeset
   328
}