Skip to content

Commit 3e3146c

Browse files
committed
feat: bump version
1 parent 3efb54c commit 3e3146c

8 files changed

+1293
-19
lines changed

martor/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__VERSION__ = "1.6.44"
2-
__RELEASE_DATE__ = "15-Apr-2024"
1+
__VERSION__ = "1.6.45"
2+
__RELEASE_DATE__ = "15-Nov-2024"
33
__AUTHOR__ = "Agus Makmun (Summon Agus)"
44
__AUTHOR_EMAIL__ = "[email protected]"
+161-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,167 @@
11
/**
2-
* Name : Martor v1.6.44
2+
* Name : Martor v1.6.45
33
* Created by : Agus Makmun (Summon Agus)
4-
* Release date : 15-Apr-2024
4+
* Release date : 15-Nov-2024
55
* License : GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007
66
* Repository : https://github.com/agusmakmun/django-markdown-editor
77
* CSS Minifier : https://www.minifier.org
88
**/
9-
:root{--primary:#79aec8;--secondary:#417690}body{margin:0;padding:0;font-size:14px;color:#333;background:#fff}#container{-webkit-box-sizing:unset;box-sizing:unset}#branding h1{margin:0!important}body,h1,h2,h3,h4,h5,button,input,optgroup,select{font-family:"Roboto","Lucida Grande","DejaVu Sans","Bitstream Vera Sans",Verdana,Arial,sans-serif}h1,h2,h3,h4,h5{font-weight:bold!important;line-height:unset!important}h1{margin:0 0 20px!important;font-weight:300!important;font-size:20px!important;color:#333!important}h2{font-size:16px!important;margin:1em 0 .5em 0!important}h2.subhead{font-weight:normal!important;margin-top:0!important}h3{font-size:14px!important;margin:.8em 0 .3em 0!important;color:#333!important;font-weight:bold!important}h4{font-size:12px!important;margin:1em 0 .8em 0!important;padding-bottom:3px!important}h5{font-size:10px!important;margin:1.5em 0 .5em 0!important;color:#333!important;text-transform:uppercase!important;letter-spacing:1px!important}.button,input[type=submit],input[type=button],.submit-row input,a.button{padding:5px 15px}nav.sticky caption{caption-side:unset}.ui.tabular.menu+.attached:not(.top).segment,.ui.tabular.menu+.attached:not(.top).segment+.attached:not(.top).segment{width:auto}fieldset .form-row>div{width:100%}fieldset .form-row .main-martor{display:grid!important}.submit-row a.deletelink{height:unset}.table.markdown-reference h2{font-size:1.5em;background:none;color:unset;padding:0;font-weight:300!important}.js-inline-admin-formset .form-row:not(.empty-form){display:revert}@media (prefers-color-scheme:dark){body{color:#fff;background:#121212!important}h1,h3,h5{color:#fff!important}.modal-help-guide .modal-content{background:#121212!important}.modal-help-guide .modal-title{color:#333!important;font-size:unset!important;margin:0!important}.modal-help-guide .table.markdown-reference{background:#fff;color:#fff}.modal-help-guide .content{background:#121212!important}.tab-martor-menu .item,.martor-toolbar .ui.basic.buttons .button{color:#fff!important}}
9+
:root {
10+
--primary: #79aec8;
11+
--secondary: #417690
12+
}
13+
14+
body {
15+
margin: 0;
16+
padding: 0;
17+
font-size: 14px;
18+
color: #333;
19+
background: #fff
20+
}
21+
22+
#container {
23+
-webkit-box-sizing: unset;
24+
box-sizing: unset
25+
}
26+
27+
#branding h1 {
28+
margin: 0 !important
29+
}
30+
31+
body,
32+
h1,
33+
h2,
34+
h3,
35+
h4,
36+
h5,
37+
button,
38+
input,
39+
optgroup,
40+
select {
41+
font-family: "Roboto", "Lucida Grande", "DejaVu Sans", "Bitstream Vera Sans", Verdana, Arial, sans-serif
42+
}
43+
44+
h1,
45+
h2,
46+
h3,
47+
h4,
48+
h5 {
49+
font-weight: bold !important;
50+
line-height: unset !important
51+
}
52+
53+
h1 {
54+
margin: 0 0 20px !important;
55+
font-weight: 300 !important;
56+
font-size: 20px !important;
57+
color: #333 !important
58+
}
59+
60+
h2 {
61+
font-size: 16px !important;
62+
margin: 1em 0 .5em 0 !important
63+
}
64+
65+
h2.subhead {
66+
font-weight: normal !important;
67+
margin-top: 0 !important
68+
}
69+
70+
h3 {
71+
font-size: 14px !important;
72+
margin: .8em 0 .3em 0 !important;
73+
color: #333 !important;
74+
font-weight: bold !important
75+
}
76+
77+
h4 {
78+
font-size: 12px !important;
79+
margin: 1em 0 .8em 0 !important;
80+
padding-bottom: 3px !important
81+
}
82+
83+
h5 {
84+
font-size: 10px !important;
85+
margin: 1.5em 0 .5em 0 !important;
86+
color: #333 !important;
87+
text-transform: uppercase !important;
88+
letter-spacing: 1px !important
89+
}
90+
91+
.button,
92+
input[type=submit],
93+
input[type=button],
94+
.submit-row input,
95+
a.button {
96+
padding: 5px 15px
97+
}
98+
99+
nav.sticky caption {
100+
caption-side: unset
101+
}
102+
103+
.ui.tabular.menu+.attached:not(.top).segment,
104+
.ui.tabular.menu+.attached:not(.top).segment+.attached:not(.top).segment {
105+
width: auto
106+
}
107+
108+
fieldset .form-row>div {
109+
width: 100%
110+
}
111+
112+
fieldset .form-row .main-martor {
113+
display: grid !important
114+
}
115+
116+
.submit-row a.deletelink {
117+
height: unset
118+
}
119+
120+
.table.markdown-reference h2 {
121+
font-size: 1.5em;
122+
background: none;
123+
color: unset;
124+
padding: 0;
125+
font-weight: 300 !important
126+
}
127+
128+
.js-inline-admin-formset .form-row:not(.empty-form) {
129+
display: revert
130+
}
131+
132+
@media (prefers-color-scheme:dark) {
133+
body {
134+
color: #fff;
135+
background: #121212 !important
136+
}
137+
138+
h1,
139+
h3,
140+
h5 {
141+
color: #fff !important
142+
}
143+
144+
.modal-help-guide .modal-content {
145+
background: #121212 !important
146+
}
147+
148+
.modal-help-guide .modal-title {
149+
color: #333 !important;
150+
font-size: unset !important;
151+
margin: 0 !important
152+
}
153+
154+
.modal-help-guide .table.markdown-reference {
155+
background: #fff;
156+
color: #fff
157+
}
158+
159+
.modal-help-guide .content {
160+
background: #121212 !important
161+
}
162+
163+
.tab-martor-menu .item,
164+
.martor-toolbar .ui.basic.buttons .button {
165+
color: #fff !important
166+
}
167+
}

0 commit comments

Comments
 (0)