-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathoptions.html
165 lines (145 loc) · 4.88 KB
/
options.html
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="utf-8">
<title>Настройки Строгого Помидора</title>
<style type="text/css">
html {
height: 100%;
width: 100%;
}
body {
background: url(icons/work_full.png) no-repeat fixed right bottom;
font-family: sans-serif;
padding: 0 1.5em;
}
select, input[type=text] {
background: none;
border: 1px solid #aaa;
padding: .25em;
-webkit-border-radius: 3px;
}
#site-list-wrapper {
margin-bottom: 2em;
}
#site-list-header {
font-weight: bold;
margin-bottom: .25em;
}
#site-list-header select {
font-size: 100%;
font-weight: bold;
padding: 0;
}
#site-list {
border: 1px solid #aaa;
height: 15em;
width: 25em;
}
#site-list-wrapper .note {
width: 33em;
}
p {
width: 50%;
}
#save-successful {
color: green;
display: none;
margin-left: 1em;
}
#time-format-error {
color: red;
display: none;
}
#save-successful.show, #time-format-error.show {
display: inline;
}
#work-block-info {
color: red;
display: none;
width: 25em;
}
body.work #work-block-info {
display: block;
}
div {
margin-bottom: .75em;
}
#durations label {
font-weight: bold;
}
#durations span {
font-size: 85%;
margin-right: 1.5em;
}
.note {
color: #333;
font-size: 75%;
}
label .note {
margin-left: 2em;
margin-top: 0;
}
#save-button {
margin-top: 1em;
}
</style>
</head>
<body>
<h1>Настройки Строгого Помидора</h1>
<p id="work-block-info">
Чтобы избежать соблазна, некоторые настройки нельзя поменять в течение рабочей сессии. Терпите, пожалуйста.
</p>
<form id="options-form">
<div id="site-list-wrapper">
<header id="site-list-header">
<select id="blacklist-or-whitelist">
<option>Блокировать</option>
<option>Разрешать</option>
</select>
только сайты из этого списка:
</header>
<textarea id="site-list"></textarea>
<p class="note">
Вводите по одному сайту на строчку, например: youtube.com или google.com/reader/
На основе этого списка мы заблокируем или разрешим просмотр сайтов.
</p>
<p class="note">
Обратите внимание, что mail.example.com в списке никак не повлияет на www.example.com, но example.com будет влиять на оба предыдущих. Аналогично, google.com/reader/ соответствует Гугл Ридер, но никак не влияет на поиск Гугл, Gmail или любой другой сервис Google
</p>
</div>
<div id="durations">
<label for="work-duration">Работа:</label>
<input id="work-duration" type="text" size="2" />
<span>минуты</span>
<label for="break-duration">Отдых:</label>
<input id="break-duration" type="text" size="2" />
<span>минуты</span>
<span id="time-format-error">
Время должно быть в формате MM или MM:SS
</span>
</div>
<div>
<input id="should-ring" type="checkbox">
<label for="should-ring">
По окончании сессии воспроизводить звуковой сигнал
</label>
</div>
<div>
<input id="click-resets" type="checkbox">
<label for="click-resets">
Клик по активному таймеру перезапустит его
<p class="note">
Согласно нашей строгой философии, единственный способ <em>отключить</em> активный таймер (в состоянии работы) - отключить приложение.
</p>
</label>
</div>
<p class="note">
Отключить таймер можно только в состоянии отдыха.
</p>
<button type="submit" id="save-button">Сохранить</button>
<span id="save-successful">Сохранено</span>
</form>
<script type="text/javascript" src="options.js"></script>
</body>
</html>