summaryrefslogtreecommitdiff
path: root/src/ws/munia.css
blob: 8eeebba6cbe31725c5c50f115bdf262c57d9a65d (plain)
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
115
116
117
118
119
120
121
122
123
/* Prevent the text contents of draggable elements from being selectable. */
[draggable]
{
	-moz-user-select: none;
	-khtml-user-select: none;
	-webkit-user-select: none;
	user-select: none;
}

body
{
	cursor: default;
}

.node
{
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
	cursor: move;
	background-color: #aaa;
	border-style: solid;
	border-width: 1px;
	border-color: black;
	border-radius: 3px;
	padding: 6px;
	margin: 10px;
/*	max-width: 800px;*/
	margin-left: auto;
	margin-right: auto;
	overflow: hidden;
}

.node .id
{
	font-size: 0.7em;
	vertical-align: text-top;
	opacity: 0.3;
	min-width: 2em;
	display: inline-block;
	pointer-events: none;
}

.node .title
{
	padding-left: 5px;
	background: transparent;
	pointer-events: none;
}

.node .edit
{
	border-color: red;
/*
	border: inherit;
	padding: inherit;
	margin: inherit;
	background: inherit;
*/
}

.node .add_button
{
	float: right;
	display: inline-box;
	width: 1em;
	height: 1em;
	font-size: 0.5em;
	vertical-align: text-center;
	text-align: center;
	border: solid green 2px;
	cursor: pointer;
}

.node .collapse_button
{
	float: right;
	display: inline-box;
	width: 1em;
	height: 1em;
	font-size: 0.5em;
	vertical-align: text-center;
	text-align: center;
	border: solid green 2px;
	cursor: pointer;
}

.board
{
/*	width: *; */
	min-height: 100px;
	width: 500px;
	padding: 2px;
	margin: 2px;
	display: inline-box;
	float:left;

	background: -moz-linear-gradient(left center, rgb(0,0,0), rgb(79,79,79), rgb(21,21,21));
	background: -webkit-gradient(linear, left top, right top,
	                             color-stop(0, rgb(0,0,0)),
	                             color-stop(0.50, rgb(79,79,79)),
	                             color-stop(1, rgb(21,21,21)));
	background: -webkit-linear-gradient(left center, rgb(0,0,0), rgb(79,79,79), rgb(21,21,21));
	background: -ms-linear-gradient(left center, rgb(0,0,0), rgb(79,79,79), rgb(21,21,21));
}

.log
{
	clear: both;
	height: 20em;
	font-family: monospace;
	font-size: 1em;
	padding: 2px 5px;
	color: #0f0;
	background-color: #111;
	border: 1px solid #030;
	border-radius: 4px;
	overflow: auto;
}