Skip to content

Commit 6a54809

Browse files
authored
ver. 1.1.1
some fixes check CHANGES.md
1 parent 567f208 commit 6a54809

File tree

4 files changed

+211
-3
lines changed

4 files changed

+211
-3
lines changed

mlp/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535

3636
# !!! change version upon update !!!
3737
global VERSION
38-
VERSION ="1.1.0"
38+
VERSION ="1.1.1"
3939

4040
# postfix regexp
4141
postf_match = r'([A-Za-z]+[ \t]+[0-9]+[ \t]+[0-9]+\:[0-9]+:[0-9]+).*'

mlp/static/css/style.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@
159159

160160
/*change notification z-index*/
161161
.notie-alert {
162-
z-index: 1002;
162+
z-index: 1002!important;
163163
}
164164
/*fix sematicui paddings
165165
.ui.fluid.container:has(.login) {

mlp/static/css/style.css.bak

Lines changed: 208 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,208 @@
1+
/*logo*/
2+
.logo {
3+
display: inline-flex;
4+
flex-direction: row;
5+
align-items: center;
6+
justify-content: space-between;
7+
}
8+
.logo img {
9+
box-shadow: 3px 3px 3px 0 rgba(34,36,38,.15);
10+
}
11+
.title {
12+
text-overflow: ellipsis;
13+
/*white-space: nowrap;*/
14+
overflow: hidden;
15+
}
16+
.title h1 {
17+
overflow: hidden;
18+
text-overflow: ellipsis;
19+
margin-left: 20px;
20+
margin-right: 20px;
21+
}
22+
/* on top from bottom offset */
23+
#back-to-top {
24+
bottom: 30px!important;
25+
}
26+
27+
/*to mark mouse over table row*/
28+
.tablesorter tr:hover td{
29+
background-color: rgb(255 255 255 / 40%);
30+
}
31+
.tablesorter tr td {
32+
33+
}
34+
35+
/*for tablesorter*/
36+
37+
.tablesorter {
38+
table-layout: fixed;
39+
}
40+
.tablesorter td:not(:last-child):not(.exclude-marquee) {
41+
overflow: hidden;
42+
text-overflow: ellipsis;
43+
white-space: nowrap;
44+
text-align: center;
45+
}
46+
47+
.tablesorter th, .tablesorter-header-inner {
48+
overflow: hidden;
49+
white-space: nowrap;
50+
text-overflow: ellipsis;
51+
text-align: center;
52+
}
53+
.tablesorter th:not(.exclude-marquee) {
54+
}
55+
56+
/* tablesorter asc and desc arrows */
57+
.tablesorter-headerAsc {
58+
background-image: url(data:image/gif;base64,R0lGODlhFQAEAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAQAAAINjI8Bya2wnINUMopZAQA7)!important;
59+
background-position: center right!important;
60+
background-repeat: no-repeat!important;
61+
}
62+
63+
.tablesorter-headerDesc {
64+
background-image: url(data:image/gif;base64,R0lGODlhFQAEAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAQAAAINjB+gC+jP2ptn0WskLQA7)!important;
65+
background-position: center right!important;
66+
background-repeat: no-repeat!important;
67+
}
68+
69+
.tablesorter-headerRow {
70+
background: #f9fafb!important;
71+
72+
}
73+
.tablesorter th {
74+
transition: none!important;
75+
cursor: pointer!important;
76+
}
77+
78+
.ui.form {
79+
max-width: initial!important;
80+
}
81+
82+
.ui.button>.icon {
83+
margin:0!important;
84+
}
85+
86+
87+
/*for sticky pager*/
88+
.ui.buttons {
89+
z-index: 3;
90+
position: sticky;
91+
bottom: 0;
92+
width: 100%;
93+
opacity:1;
94+
background: white;
95+
justify-content: center;
96+
flex-wrap: wrap;
97+
}
98+
99+
/*change notification z-index*/
100+
.notie-alert {
101+
z-index: 1002;
102+
}
103+
/*fix sematicui paddings*/
104+
.ui.fluid.container:has(.login) {
105+
height: 70%!important;
106+
}
107+
108+
.ui.fluid.container {
109+
margin-top:1em;
110+
width: 100%!important;
111+
height: initial;
112+
113+
}
114+
115+
@media only screen and (min-width: 1400px) {
116+
.ui.fluid.container {
117+
padding-left: 12em;
118+
padding-right: 12em;
119+
}
120+
}
121+
@media only screen and (max-width: 1400px) {
122+
.ui.fluid.container {
123+
padding-left: 1em;
124+
padding-right: 1em;
125+
}
126+
127+
128+
}
129+
/*fix semanticui dropdown style*/
130+
.ui.selection.dropdown {
131+
padding:initial!important;
132+
}
133+
134+
#user-settings, #tips {
135+
display: flex;
136+
align-items: stretch;
137+
flex-direction: column;
138+
justify-content: flex-end;
139+
}
140+
141+
@media only screen and (max-width: 767px){
142+
#user-settings, #tips {
143+
padding-left: 0;
144+
padding-right: 0;
145+
}
146+
147+
/* sticky header button styling */
148+
.hide-sticky-header-button {
149+
width: 100%;
150+
text-align: center;
151+
position: sticky;
152+
top: 0;
153+
opacity: .85;
154+
padding: 10px;
155+
background-color: #fff;
156+
transition: opacity 0.5s ease-out;
157+
z-index: 4;
158+
cursor: pointer;
159+
}
160+
}
161+
162+
163+
@media only screen and (min-width: 767px) and (max-width: 1000px){
164+
.exclude-marquee button span, #user-settings > div.logo button span{
165+
display:none!important
166+
}
167+
}
168+
169+
.ui.grid+.grid {
170+
margin-top: 1rem;
171+
margin-bottom: 1rem;
172+
}
173+
174+
/*all buttons except ui.buttons div*/
175+
button:not(.navi), #footer {
176+
width:100%;
177+
}
178+
/* fix of calendar z-index over modals*/
179+
.ui.popup {
180+
z-index:4!important;
181+
}
182+
/* calendar ellipsis hidden inputs*/
183+
#rangestart input, #rangeend input {
184+
overflow: hidden;
185+
white-space: nowrap;
186+
text-overflow: ellipsis;
187+
}
188+
/* fix of modal long strings*/
189+
/*#email-metadata {
190+
table-layout: fixed
191+
}
192+
193+
#email-metadata td {
194+
white-space: break-spaces;
195+
overflow: hidden;
196+
text-overflow: ellipsis;
197+
}
198+
199+
#email-metadata td:hover {
200+
overflow: auto;
201+
text-overflow: initial;
202+
}
203+
*/
204+
#mail-modal > div.content > ul {
205+
overflow: auto;
206+
}
207+
208+

mlp/templates/base.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
<title v-if="localeData.app_title" v-html="localeData.app_title"></title>
5959
<title v-else v-html="fallbackLocaleData.app_title"></title>
6060
<div class="ui basic modal" id="loading-modal" style="background: transparent!important; box-shadow: initial!important" >
61-
<div v-if="!loading" class="ui active inline huge text centered loader">
61+
<div class="ui active inline huge text centered loader">
6262
<span v-if="localeData.loading" v-html="localeData.loading"></span>
6363
<span v-else v-html="fallbackLocaleData.loading"></span>
6464
</div>

0 commit comments

Comments
 (0)