OSDN Git Service

FIX:ブックマークレット画面内の改行追加とスタイルを修正
[nucleus-jp/nucleus-next.git] / skins / admin / bookmarklet / styles / bookmarklet.css
1 /* 
2         style definitions for the bookmarklet 
3         
4         $Id: bookmarklet.css 1277 2008-10-22 08:43:59Z shizuki $
5 */
6
7 body {
8         font-size: small;
9         background: #fff;
10         color: #000;
11     font-family: "Trebuchet MS",Trebuchet,"Bitstream Vera Sans",verdana,lucida,arial,helvetica,sans-serif
12 }               
13
14 h1 {
15         border-bottom: 1px dotted gray;
16         font-size: medium;
17         color: #596d9d;
18 }
19
20 /* 
21         Hide switch buttons initially, we'll enable them again if we are sure
22         the browser supports DOM
23 */
24 #switchbuttons {
25         display: none;
26 }
27 /*
28         Hide preview also when no DOM is supported
29 */
30 #preview {
31         display: none;
32 }
33
34 .buttonbar {
35    margin-bottom: 5px;
36    background: rgb(187, 187, 204);
37    padding: 3px;
38 }
39
40 .buttonbar input {
41    background: #C5C5D3;
42     border: 1px solid #CACAD7;
43     border-right: 2px solid #8E8EAB;
44     border-bottom: 2px solid #8E8EAB;
45     color: #000000;
46     font-family: "Trebuchet MS",Trebuchet,"Bitstream Vera Sans",verdana,lucida,arial,helvetica,sans-serif;
47     font-weight: bold;   
48 }
49
50 .contentblock {
51         /*background: #ddd;*/
52 /*      height: 400px;*/
53         height: 450px;
54         overflow: auto; /* temporary removed, to make the select box work in Mozilla */
55         padding: 1px;
56     margin: 0px;
57         vertical-align: top;
58 }
59
60 .shortcuts {
61         float: right; 
62         text-align: right;
63         font-size: x-small;
64 }
65
66 h2 {
67    font-size: 1.5em;
68    color: gray;
69     margin-top: 0px;
70     padding-top: 0px;
71     padding-bottom: 0px;
72     margin-top: 0px;
73 }
74
75 a:link, a:visited {
76         color: #1D3565; 
77         font-weight: bold;
78         text-decoration: none;
79 }
80
81 a:hover {
82         text-decoration: underline;
83 }                       
84
85 img { 
86         border: none;
87 }
88
89 .indent {
90         margin-left: 40px;
91 }
92
93 label           { cursor: pointer; }
94
95 table {
96         border: none;
97         width: 95%;
98         border-collapse: collapse;
99         margin-bottom: 10px;
100         margin-top: 10px;       
101 }
102
103 th {
104         background: #bbc;
105         color: #000;
106         font-size: small;
107 }
108
109 th, td {
110         padding: 4px;
111         empty-cells: show;      
112 }
113
114 td {
115         background: #fff;
116         border: 1px solid #ddd;
117         font-size: small;
118         vertical-align: top;
119         text-align: left;
120 }
121
122 td a:link, td a:visited { 
123         text-decoration: underline;
124         color: black;
125         font-weight: normal;
126 }
127 td a:hover {
128         color: #1D3565;
129         text-decoration: underline;
130 }
131
132 td.draft, td.future {
133         background: #ffe;
134 }
135
136 tr.highlighted td {
137         background: green;
138 }
139
140 ul.nobullets {
141         list-style-type: none;
142         padding: 0;
143         margin: 0;
144 }