mirror of
https://github.com/YunoHost-Apps/lionwiki-t2t_ynh.git
synced 2024-09-03 19:36:27 +02:00
maj nouveau checksum upstream
désactivation du panel ssowat qui provoque des bad gateway maj theme par defaut
This commit is contained in:
parent
69db9a3860
commit
91fc42e043
6 changed files with 288 additions and 84 deletions
|
@ -1,5 +1,5 @@
|
||||||
SOURCE_URL=https://sourceforge.net/projects/lionwiki-t2t/files/lionwiki-t2t.zip
|
SOURCE_URL=https://sourceforge.net/projects/lionwiki-t2t/files/lionwiki-t2t.zip
|
||||||
SOURCE_SUM=adc4dfe32fb7ce6994ee5d921b1ff4db7b7e57ba307f60d1f0ccc1a6adba4735
|
SOURCE_SUM=3b893ed663da7fb4db381e88d5044281452c68fe3ad920b5a23b326ce5a2e4f6
|
||||||
SOURCE_SUM_PRG=sha256sum
|
SOURCE_SUM_PRG=sha256sum
|
||||||
SOURCE_FORMAT=zip
|
SOURCE_FORMAT=zip
|
||||||
SOURCE_IN_SUBDIR=true
|
SOURCE_IN_SUBDIR=true
|
||||||
|
|
|
@ -544,4 +544,8 @@ th, thead, #previewPane th, #previewPane thead {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
progress { color: @MainColor; background-color: @BackgroundColor - #111; border-radius: 0px; border: solid 1px; width: 10em; height: 1em;}
|
||||||
|
progress::-moz-progress-bar { background: @MainColor;}
|
||||||
|
progress::-webkit-progress-value { background: @MainColor;}
|
||||||
|
progress::-webkit-progress-bar { background: @MainColor;}
|
||||||
|
|
||||||
|
|
|
@ -2,6 +2,12 @@
|
||||||
See http://lesscss.org/
|
See http://lesscss.org/
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
|
@MainFontFamily: Ubuntu, Open Sans,sans-serif, MyFont;
|
||||||
|
@MainFontFamilyHeader: Fengardo Neue, Archivo Narrow, LoveYaLikeASister, Ubuntu Condensed, Open Sans Condensed, sans-serif, MyFont;
|
||||||
|
@MainFontCode: Monospace,Courier;
|
||||||
|
@MainFontFamilyEdit: Ubuntu, Open Sans,sans-serif, MyFont;
|
||||||
|
*/
|
||||||
|
/*
|
||||||
Use the part above to customise your fonts.
|
Use the part above to customise your fonts.
|
||||||
You can create your own manuscript / handwriting font on http://www.myscriptfont.com/ or http://www.paintfont.com/
|
You can create your own manuscript / handwriting font on http://www.myscriptfont.com/ or http://www.paintfont.com/
|
||||||
*/
|
*/
|
||||||
|
@ -19,16 +25,28 @@ You can create your own manuscript / handwriting font on http://www.myscriptfont
|
||||||
#847457 : brown
|
#847457 : brown
|
||||||
*/
|
*/
|
||||||
/* define mixin */
|
/* define mixin */
|
||||||
/* call the mixin which sets the variable once */
|
/* we disable it as it's sometimes a problem with lesscss
|
||||||
|
.generateColor() {
|
||||||
|
@background-color: color(~`@{all-background-colors}.split(',')[Math.floor(Math.random()*@{all-background-colors}.split(',').length)]`);
|
||||||
|
}
|
||||||
|
.generateColor();
|
||||||
|
*/
|
||||||
/* This line below will use a random main color: */
|
/* This line below will use a random main color: */
|
||||||
/* @MainColor: @background-color; */
|
/* @MainColor: @background-color; */
|
||||||
/* if you prefer to select a fixed background color, just uncomment one color from below */
|
/* if you prefer to select a fixed background color, just uncomment one color from below */
|
||||||
/* @MainColor: #549136; */
|
/* @MainColor: #549136; */
|
||||||
/*@MainColor: #7E2434;*/
|
/*@MainColor: #7E2434;*/
|
||||||
|
/*@MainColor: #7e3821;*/
|
||||||
/*@MainColor: #549136;*/
|
/*@MainColor: #549136;*/
|
||||||
|
/*@MainColor: #549136;*/
|
||||||
|
/*@MainColor: #D17732;*/
|
||||||
|
/*@MainColor: #328cc1;*/
|
||||||
|
/* For YunoHost config */
|
||||||
|
/* @MainColor: #__YNH_COLOR__; */
|
||||||
/* Header color */
|
/* Header color */
|
||||||
/* You can use a shade of MainColor: */
|
/* You can use a shade of MainColor: */
|
||||||
/* or a complementary color: */
|
/* or a complementary color: */
|
||||||
|
/*@HeaderColor: (#ffffff - @MainColor - (#ffffff - @MainColor)/3); */
|
||||||
/* used in max-width (should be renamed) */
|
/* used in max-width (should be renamed) */
|
||||||
/*@import url(http://fonts.googleapis.com/css?family=Ubuntu+Condensed);
|
/*@import url(http://fonts.googleapis.com/css?family=Ubuntu+Condensed);
|
||||||
@import url(http://fonts.googleapis.com/css?family=Ubuntu);
|
@import url(http://fonts.googleapis.com/css?family=Ubuntu);
|
||||||
|
@ -59,6 +77,30 @@ You can create your own manuscript / handwriting font on http://www.myscriptfont
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
src: local('Ubuntu Condensed'), local('UbuntuCondensed-Regular'), url(../fonts/ubuntu-condensed-regular.woff) format('woff');
|
src: local('Ubuntu Condensed'), local('UbuntuCondensed-Regular'), url(../fonts/ubuntu-condensed-regular.woff) format('woff');
|
||||||
}
|
}
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Ubuntu';
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: normal;
|
||||||
|
src: local('Ubuntu'), url(../fonts/ubuntu.woff) format('woff');
|
||||||
|
}
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Ubuntu';
|
||||||
|
font-style: italic;
|
||||||
|
font-weight: normal;
|
||||||
|
src: local('Ubuntu Italic'), url(../fonts/ubuntu-italic.woff) format('woff');
|
||||||
|
}
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Ubuntu';
|
||||||
|
font-style: bold;
|
||||||
|
font-weight: bold;
|
||||||
|
src: local('Ubuntu Bold'), url(../fonts/ubuntu-bold.woff) format('woff');
|
||||||
|
}
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Ubuntu';
|
||||||
|
font-weight: bold;
|
||||||
|
font-style: italic;
|
||||||
|
src: local('Ubuntu Italic Bold'), url(../fonts/ubuntu-bold-italic.woff) format('woff');
|
||||||
|
}
|
||||||
/*@font-face {
|
/*@font-face {
|
||||||
font-family: 'Open Sans';
|
font-family: 'Open Sans';
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
|
@ -137,6 +179,18 @@ You can create your own manuscript / handwriting font on http://www.myscriptfont
|
||||||
font-weight: 300;
|
font-weight: 300;
|
||||||
src: local('Open Sans Cond Light Italic'), local('OpenSans-CondensedLightItalic'), url(../fonts/OpenSans-CondensedLightItalic.woff) format('woff');
|
src: local('Open Sans Cond Light Italic'), local('OpenSans-CondensedLightItalic'), url(../fonts/OpenSans-CondensedLightItalic.woff) format('woff');
|
||||||
}
|
}
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Archivo Narrow';
|
||||||
|
font-style: bold;
|
||||||
|
font-weight: 300;
|
||||||
|
src: url(../fonts/ArchivoNarrow-Bold.woff) format('woff');
|
||||||
|
}
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Fengardo Neue';
|
||||||
|
font-style: bold;
|
||||||
|
font-weight: 200;
|
||||||
|
src: url(../fonts/fengardoneue-black.woff) format('woff');
|
||||||
|
}
|
||||||
/*
|
/*
|
||||||
Minimaxing 1.0 by nodethirtythree design
|
Minimaxing 1.0 by nodethirtythree design
|
||||||
http://nodethirtythree.com | @nodethirtythree
|
http://nodethirtythree.com | @nodethirtythree
|
||||||
|
@ -202,9 +256,15 @@ h6 a:hover {
|
||||||
}
|
}
|
||||||
.contentTextarea {
|
.contentTextarea {
|
||||||
width: 90%;
|
width: 90%;
|
||||||
font-family: Open Sans, MyManuscript, MyFont, Ubuntu, sans-serif;
|
font-family: Ubuntu;
|
||||||
font-size: 105%;
|
font-size: 105%;
|
||||||
}
|
}
|
||||||
|
.markItUpEditor {
|
||||||
|
width: 90%;
|
||||||
|
font-family: Ubuntu;
|
||||||
|
color: #444;
|
||||||
|
font-size: 140%;
|
||||||
|
}
|
||||||
#diff {
|
#diff {
|
||||||
white-space: pre-wrap;
|
white-space: pre-wrap;
|
||||||
word-wrap: break-word;
|
word-wrap: break-word;
|
||||||
|
@ -329,24 +389,29 @@ thead,
|
||||||
body {
|
body {
|
||||||
font-size: 12pt;
|
font-size: 12pt;
|
||||||
font-family: sans-serif;
|
font-family: sans-serif;
|
||||||
background-color: #d8e1d4;
|
/*background-color: (@Bg-extra-light/1.1 + #111);*/
|
||||||
font-family: Open Sans, MyManuscript, MyFont, Ubuntu, sans-serif;
|
background: #fff;
|
||||||
color: #767d72;
|
font-family: Ubuntu;
|
||||||
|
color: #656c61;
|
||||||
}
|
}
|
||||||
#header h1 {
|
#header h1 {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
margin: 0;
|
margin: 2px;
|
||||||
padding: 0;
|
padding: 2px;
|
||||||
border: none;
|
border: none;
|
||||||
}
|
}
|
||||||
h1,
|
h1,
|
||||||
h2,
|
h2,
|
||||||
h3,
|
h3,
|
||||||
h4 {
|
h4 {
|
||||||
font-family: Open Sans Condensed, MyManuscript, MyFont, LoveYaLikeASister, Ubuntu Condensed, sans-serif;
|
font-family: Fengardo Neue;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
color: #724986;
|
color: #21677e;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
|
margin-left: 0.1em;
|
||||||
|
margin-right: 0.1em;
|
||||||
|
padding-left: 2px;
|
||||||
|
padding-right: 2px;
|
||||||
}
|
}
|
||||||
h1,
|
h1,
|
||||||
h2 {
|
h2 {
|
||||||
|
@ -356,7 +421,7 @@ h1 {
|
||||||
font-size: 155%;
|
font-size: 155%;
|
||||||
}
|
}
|
||||||
h1 a {
|
h1 a {
|
||||||
color: #724986;
|
color: #21677e;
|
||||||
}
|
}
|
||||||
#header-wrapper h1 {
|
#header-wrapper h1 {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
|
@ -364,15 +429,15 @@ h1 a {
|
||||||
border-bottom: none;
|
border-bottom: none;
|
||||||
}
|
}
|
||||||
#header-wrapper {
|
#header-wrapper {
|
||||||
color: #65a247;
|
color: #8f4932;
|
||||||
}
|
}
|
||||||
#header-wrapper a {
|
#header-wrapper a {
|
||||||
color: #76b358;
|
color: #a05a43;
|
||||||
}
|
}
|
||||||
#header-wrapper a:hover,
|
#header-wrapper a:hover,
|
||||||
#header-wrapper a:hover {
|
#header-wrapper a:hover {
|
||||||
background-color: #549136;
|
background-color: #7e3821;
|
||||||
color: #104d00;
|
color: #3a0000;
|
||||||
}
|
}
|
||||||
#header nav {
|
#header nav {
|
||||||
color: #111;
|
color: #111;
|
||||||
|
@ -414,39 +479,43 @@ ul {
|
||||||
}
|
}
|
||||||
p {
|
p {
|
||||||
line-height: 1.7em;
|
line-height: 1.7em;
|
||||||
|
margin-left: 0.25em;
|
||||||
|
margin-right: 0.25em;
|
||||||
|
padding-left: 5px;
|
||||||
|
padding-right: 5px;
|
||||||
}
|
}
|
||||||
#main-row strong,
|
#main-row strong,
|
||||||
b {
|
b {
|
||||||
color: #555;
|
/*color: #555;*/
|
||||||
}
|
}
|
||||||
s {
|
s {
|
||||||
color: #aaa;
|
color: #aaa;
|
||||||
}
|
}
|
||||||
::selection {
|
::selection {
|
||||||
background: #549136;
|
background: #7e3821;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
::-moz-selection {
|
::-moz-selection {
|
||||||
background: #549136;
|
background: #7e3821;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
pre {
|
pre {
|
||||||
background-color: #edf7e8;
|
background-color: #f4e8e5;
|
||||||
line-height: 1.5em;
|
line-height: 1.5em;
|
||||||
font-family: mono;
|
font-family: Monospace;
|
||||||
margin: 1.0em;
|
margin: 1.0em;
|
||||||
}
|
}
|
||||||
code,
|
code,
|
||||||
blockquote,
|
blockquote,
|
||||||
dt {
|
dt {
|
||||||
background-color: #edf7e8;
|
background-color: #f4e8e5;
|
||||||
line-height: 1.5em;
|
line-height: 1.5em;
|
||||||
font-family: mono;
|
font-family: mono;
|
||||||
/*margin: 1.0em;*/
|
/*margin: 1.0em;*/
|
||||||
}
|
}
|
||||||
dd {
|
dd {
|
||||||
line-height: 1.5em;
|
line-height: 1.5em;
|
||||||
font-family: Monospace, Courier;
|
font-family: Monospace;
|
||||||
font-size: 0.9em;
|
font-size: 0.9em;
|
||||||
}
|
}
|
||||||
pre,
|
pre,
|
||||||
|
@ -462,7 +531,7 @@ img {
|
||||||
max-width: 50%;
|
max-width: 50%;
|
||||||
max-height: 500px;
|
max-height: 500px;
|
||||||
padding: 1px;
|
padding: 1px;
|
||||||
border: solid 1px #76b358;
|
border: solid 1px #a05a43;
|
||||||
/*display: block;*/
|
/*display: block;*/
|
||||||
/*margin: 0 auto;*/
|
/*margin: 0 auto;*/
|
||||||
}
|
}
|
||||||
|
@ -489,15 +558,15 @@ li {
|
||||||
}
|
}
|
||||||
#main ul li:hover,
|
#main ul li:hover,
|
||||||
ul li:active {
|
ul li:active {
|
||||||
background-color: #edf7e8;
|
background-color: #f4e8e5;
|
||||||
}
|
}
|
||||||
a {
|
a {
|
||||||
color: #559237;
|
color: #7f3922;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
a:hover {
|
a:hover {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
background-color: #dce6d7;
|
background-color: #e3d7d4;
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
}
|
}
|
||||||
ul.small-image-list li {
|
ul.small-image-list li {
|
||||||
|
@ -520,19 +589,19 @@ ul.link-list li:first-child {
|
||||||
a.toolbarTextareaItem {
|
a.toolbarTextareaItem {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
padding: 5px 10px 5px 10px;
|
padding: 5px 10px 5px 10px;
|
||||||
background-color: #549136;
|
background-color: #7e3821;
|
||||||
border-radius: 6px;
|
border-radius: 6px;
|
||||||
text-transform: lowercase;
|
text-transform: lowercase;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
font-size: 1.0em;
|
font-size: 1.0em;
|
||||||
letter-spacing: -1px;
|
letter-spacing: -1px;
|
||||||
border: solid 1px #549136;
|
border: solid 1px #7e3821;
|
||||||
box-shadow: inset 0px 0px 0px 1px #549136;
|
box-shadow: inset 0px 0px 0px 1px #7e3821;
|
||||||
}
|
}
|
||||||
.button:hover,
|
.button:hover,
|
||||||
a.toolbarTextareaItem:hover {
|
a.toolbarTextareaItem:hover {
|
||||||
background-color: #65a247;
|
background-color: #8f4932;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
a.toolbarTextareaItem b {
|
a.toolbarTextareaItem b {
|
||||||
|
@ -541,50 +610,50 @@ a.toolbarTextareaItem b {
|
||||||
#copyright {
|
#copyright {
|
||||||
font-size: 0.6em;
|
font-size: 0.6em;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
color: #a7b1a2;
|
color: #aea29f;
|
||||||
border-top: solid 1px #ced0b7;
|
border-top: solid 1px #ced0b7;
|
||||||
line-height: 1.1em;
|
line-height: 1.1em;
|
||||||
padding: 3em 0 0 0;
|
padding: 3em 0 0 0;
|
||||||
margin: 1% 0 0 0;
|
margin: 1% 0 0 0;
|
||||||
}
|
}
|
||||||
#copyright a {
|
#copyright a {
|
||||||
color: #96a091;
|
color: #9d918e;
|
||||||
}
|
}
|
||||||
#copyright a:hover {
|
#copyright a:hover {
|
||||||
color: #ffffff;
|
color: #ffffff;
|
||||||
background-color: #b9c3b4;
|
background-color: #c0b4b1;
|
||||||
}
|
}
|
||||||
.txt2tagsMenu,
|
.txt2tagsMenu,
|
||||||
input {
|
input {
|
||||||
background-color: #c7d0c3;
|
background-color: #cdc3bf;
|
||||||
}
|
}
|
||||||
.txt2tagsMenu:hover,
|
.txt2tagsMenu:hover,
|
||||||
input.submit:hover {
|
input.submit:hover {
|
||||||
background-color: #d8e1d4;
|
background-color: #ded4d0;
|
||||||
}
|
}
|
||||||
.button_txt2tags_true,
|
.button_txt2tags_true,
|
||||||
input.submit {
|
input.submit {
|
||||||
background-color: #549136;
|
background-color: #7e3821;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
.button_txt2tags_true:hover,
|
.button_txt2tags_true:hover,
|
||||||
input.submit:hover {
|
input.submit:hover {
|
||||||
background-color: #76b358;
|
background-color: #a05a43;
|
||||||
}
|
}
|
||||||
.button_txt2tags_false {
|
.button_txt2tags_false {
|
||||||
background-color: #724986;
|
background-color: #21677e;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
.button_txt2tags_false:hover {
|
.button_txt2tags_false:hover {
|
||||||
background-color: #946ba8;
|
background-color: #4389a0;
|
||||||
}
|
}
|
||||||
.valide {
|
.valide {
|
||||||
color: #549136;
|
color: #7e3821;
|
||||||
background-color: #c7d0c3;
|
background-color: #cdc3bf;
|
||||||
}
|
}
|
||||||
.refuse {
|
.refuse {
|
||||||
color: #724986;
|
color: #21677e;
|
||||||
background-color: #c7d0c3;
|
background-color: #cdc3bf;
|
||||||
}
|
}
|
||||||
/********************************/
|
/********************************/
|
||||||
/* 1000px (>= 1000px) */
|
/* 1000px (>= 1000px) */
|
||||||
|
@ -601,7 +670,7 @@ input.submit:hover {
|
||||||
margin-top: 1.5em;
|
margin-top: 1.5em;
|
||||||
}
|
}
|
||||||
#header-wrapper {
|
#header-wrapper {
|
||||||
background-color: #549136;
|
background-color: #7e3821;
|
||||||
}
|
}
|
||||||
#header-wrapper h1 {
|
#header-wrapper h1 {
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
|
@ -614,8 +683,8 @@ input.submit:hover {
|
||||||
margin-top: 40px;
|
margin-top: 40px;
|
||||||
padding: 0 40px 0 40px;
|
padding: 0 40px 0 40px;
|
||||||
border-radius: 6px;
|
border-radius: 6px;
|
||||||
border: solid 1px #549136;
|
border: solid 1px #7e3821;
|
||||||
box-shadow: inset 0px 0px 0px 1px #549136, 0px 1px 4px 0px rgba(0, 0, 0, 0);
|
box-shadow: inset 0px 0px 0px 1px #7e3821, 0px 1px 4px 0px rgba(0, 0, 0, 0);
|
||||||
height: 66px;
|
height: 66px;
|
||||||
}
|
}
|
||||||
#header h1 {
|
#header h1 {
|
||||||
|
@ -658,7 +727,7 @@ input.submit:hover {
|
||||||
}
|
}
|
||||||
#banner-wrapper a {
|
#banner-wrapper a {
|
||||||
border-bottom: none;
|
border-bottom: none;
|
||||||
color: #724986;
|
color: #21677e;
|
||||||
}
|
}
|
||||||
#banner-wrapper {
|
#banner-wrapper {
|
||||||
margin-top: -20px;
|
margin-top: -20px;
|
||||||
|
@ -755,7 +824,7 @@ input.submit:hover {
|
||||||
width: 490px;
|
width: 490px;
|
||||||
}
|
}
|
||||||
#header-wrapper {
|
#header-wrapper {
|
||||||
background-color: #549136;
|
background-color: #7e3821;
|
||||||
}
|
}
|
||||||
#header {
|
#header {
|
||||||
position: relative;
|
position: relative;
|
||||||
|
@ -763,9 +832,9 @@ input.submit:hover {
|
||||||
margin-top: 40px;
|
margin-top: 40px;
|
||||||
padding: 0 40px 0 40px;
|
padding: 0 40px 0 40px;
|
||||||
border-radius: 6px;
|
border-radius: 6px;
|
||||||
border: solid 1px #549136;
|
border: solid 1px #7e3821;
|
||||||
box-shadow: inset 0px 0px 0px 1px #549136, 0px 1px 4px 0px rgba(0, 0, 0, 0);
|
box-shadow: inset 0px 0px 0px 1px #7e3821, 0px 1px 4px 0px rgba(0, 0, 0, 0);
|
||||||
background-color: #549136;
|
background-color: #7e3821;
|
||||||
height: 66px;
|
height: 66px;
|
||||||
}
|
}
|
||||||
#header h1 {
|
#header h1 {
|
||||||
|
@ -847,6 +916,8 @@ input.submit:hover {
|
||||||
#main {
|
#main {
|
||||||
background: #fff;
|
background: #fff;
|
||||||
padding: 3% 0 3% 0;
|
padding: 3% 0 3% 0;
|
||||||
|
margin-left: 8px;
|
||||||
|
margin-right: 4px;
|
||||||
}
|
}
|
||||||
#main .main-row {
|
#main .main-row {
|
||||||
margin: 2% 0 2% 0;
|
margin: 2% 0 2% 0;
|
||||||
|
@ -903,7 +974,7 @@ input.submit:hover {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
#header-wrapper {
|
#header-wrapper {
|
||||||
background-color: #549136;
|
background-color: #7e3821;
|
||||||
}
|
}
|
||||||
#header-wrapper h1 {
|
#header-wrapper h1 {
|
||||||
margin-top: 0px;
|
margin-top: 0px;
|
||||||
|
@ -945,7 +1016,7 @@ input.submit:hover {
|
||||||
padding: 10px 25px 10px 25px;
|
padding: 10px 25px 10px 25px;
|
||||||
}
|
}
|
||||||
#banner-wrapper {
|
#banner-wrapper {
|
||||||
background: #549136 url(images/bg1.png);
|
background: #7e3821 url(images/bg1.png);
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
#banner {
|
#banner {
|
||||||
|
@ -990,13 +1061,16 @@ input.submit:hover {
|
||||||
/* important for markitup : */
|
/* important for markitup : */
|
||||||
.contentTextarea {
|
.contentTextarea {
|
||||||
width: 96%;
|
width: 96%;
|
||||||
font-family: Open Sans, MyManuscript, MyFont, Ubuntu, sans-serif;
|
font-family: Ubuntu;
|
||||||
font-size: 105%;
|
font-size: 105%;
|
||||||
padding: 0px;
|
padding: 0px;
|
||||||
margin-left: -15px;
|
margin-left: -15px;
|
||||||
}
|
}
|
||||||
#main {
|
#main {
|
||||||
/*overflow: auto;*/
|
/*overflow: auto;*/
|
||||||
|
background: #fff;
|
||||||
|
margin-left: 8px;
|
||||||
|
margin-right: 4px;
|
||||||
}
|
}
|
||||||
/* from 5grid/core.css */
|
/* from 5grid/core.css */
|
||||||
.\35 grid {
|
.\35 grid {
|
||||||
|
@ -1012,7 +1086,7 @@ input.submit:hover {
|
||||||
width: 98%;
|
width: 98%;
|
||||||
margin: 1%;
|
margin: 1%;
|
||||||
/*box-shadow:-1px 2px 5px 1px #105070*/
|
/*box-shadow:-1px 2px 5px 1px #105070*/
|
||||||
border: 2px solid #98d57a;
|
border: 2px solid #c27c65;
|
||||||
}
|
}
|
||||||
.mycontent td,
|
.mycontent td,
|
||||||
.mycontent th {
|
.mycontent th {
|
||||||
|
@ -1021,29 +1095,47 @@ input.submit:hover {
|
||||||
text-align: left;
|
text-align: left;
|
||||||
}
|
}
|
||||||
.mycontent th {
|
.mycontent th {
|
||||||
background: #104d00;
|
background: #3a0000;
|
||||||
/*#105070;*/
|
/*#105070;*/
|
||||||
color: #fff;
|
color: #fff;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
.mycontent tr {
|
.mycontent tr {
|
||||||
background: #ccffae;
|
background: #f6b099;
|
||||||
/*rgba(16,80,112,0.2);*/
|
/*rgba(16,80,112,0.2);*/
|
||||||
color: #111111;
|
color: #111111;
|
||||||
}
|
}
|
||||||
.mycontent tr a:hover,
|
.mycontent tr a:hover,
|
||||||
.mycontent #header-wrapper a:hover {
|
.mycontent #header-wrapper a:hover {
|
||||||
background-color: #549136;
|
background-color: #7e3821;
|
||||||
color: #98d57a;
|
color: #c27c65;
|
||||||
}
|
}
|
||||||
.mycontent tr a {
|
.mycontent tr a {
|
||||||
color: #104d00;
|
color: #3a0000;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
.mycontent tr:nth-child(even) {
|
.mycontent tr:nth-child(even) {
|
||||||
background: #a9e68b /*rgba(16,80,112,0.1)*/;
|
background: #d38d76 /*rgba(16,80,112,0.1)*/;
|
||||||
}
|
}
|
||||||
.mycontent tr:hover,
|
.mycontent tr:hover,
|
||||||
.mycontent tr:hover td {
|
.mycontent tr:hover td {
|
||||||
background-color: #65a247 /*rgba(16,80,112,0.3)*/;
|
background-color: #8f4932 /*rgba(16,80,112,0.3)*/;
|
||||||
|
}
|
||||||
|
/* Progress bar */
|
||||||
|
progress {
|
||||||
|
color: #21677e;
|
||||||
|
background-color: white;
|
||||||
|
border-radius: 4px;
|
||||||
|
/*border: solid 1px;*/
|
||||||
|
width: 10em;
|
||||||
|
height: 1em;
|
||||||
|
}
|
||||||
|
progress::-moz-progress-bar {
|
||||||
|
background: #21677e;
|
||||||
|
}
|
||||||
|
progress::-webkit-progress-value {
|
||||||
|
background: #21677e;
|
||||||
|
}
|
||||||
|
progress::-webkit-progress-bar {
|
||||||
|
background: #21677e;
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,9 +10,7 @@
|
||||||
<link rel="icon" href="templates/favicon.png" type="image/png" />
|
<link rel="icon" href="templates/favicon.png" type="image/png" />
|
||||||
<meta name="keywords" content="" />
|
<meta name="keywords" content="" />
|
||||||
<link rel="stylesheet" href="templates/minimaxing/5grid/core.css" />
|
<link rel="stylesheet" href="templates/minimaxing/5grid/core.css" />
|
||||||
<link rel="stylesheet" href="templates/minimaxing/minimaxing.css" />
|
|
||||||
|
|
||||||
<script src="templates/js/less.js" type="text/javascript"></script>
|
|
||||||
|
|
||||||
<!-- for txt2tagsjs -->
|
<!-- for txt2tagsjs -->
|
||||||
<script type="text/javascript" src="txt2tags.js"></script>
|
<script type="text/javascript" src="txt2tags.js"></script>
|
||||||
|
@ -34,6 +32,9 @@
|
||||||
|
|
||||||
<link rel="stylesheet" type="text/css" href="markitup/skins/simple/style.css" />
|
<link rel="stylesheet" type="text/css" href="markitup/skins/simple/style.css" />
|
||||||
<link rel="stylesheet" type="text/css" href="markitup/sets/txt2tags/style.css" />
|
<link rel="stylesheet" type="text/css" href="markitup/sets/txt2tags/style.css" />
|
||||||
|
<link rel="stylesheet" href="templates/minimaxing/minimaxing.css" />
|
||||||
|
|
||||||
|
<script src="templates/js/less.js" type="text/javascript"></script>
|
||||||
<script type="text/javascript" >
|
<script type="text/javascript" >
|
||||||
<!--
|
<!--
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
|
@ -125,7 +126,7 @@ $(document).ready(function() {
|
||||||
<td colspan="2" style="text-align: right;" ><small>{SHOW_PAGE}<br/>{SYNTAX}</small></td>
|
<td colspan="2" style="text-align: right;" ><small>{SHOW_PAGE}<br/>{SYNTAX}</small></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td colspan="3">{CONTENT_TEXTAREA}</td>
|
<td colspan="3"><!--{ CONTENT_SUBMIT}{ CONTENT_PREVIEW}<br/><br/>-->{CONTENT_TEXTAREA}</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td colspan="2">{FORM_PASSWORD}{ FORM_PASSWORD_INPUT}{ plugin:CAPTCHA_QUESTION}{ plugin:CAPTCHA_INPUT}<br/>{ EDIT_SUMMARY_TEXT}{ EDIT_SUMMARY_INPUT}<br/>{ CONTENT_SUBMIT}{ CONTENT_PREVIEW}</td>
|
<td colspan="2">{FORM_PASSWORD}{ FORM_PASSWORD_INPUT}{ plugin:CAPTCHA_QUESTION}{ plugin:CAPTCHA_INPUT}<br/>{ EDIT_SUMMARY_TEXT}{ EDIT_SUMMARY_INPUT}<br/>{ CONTENT_SUBMIT}{ CONTENT_PREVIEW}</td>
|
||||||
|
|
|
@ -5,11 +5,18 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
@MainFontFamily: Open Sans,MyManuscript,MyFont, Ubuntu, sans-serif;
|
@MainFontFamily: Ubuntu, Open Sans,sans-serif, MyFont;
|
||||||
@MainFontFamilyHeader: Open Sans Condensed,MyManuscript,MyFont,LoveYaLikeASister,Ubuntu Condensed, sans-serif;
|
@MainFontFamilyHeader: Fengardo Neue, Archivo Narrow, LoveYaLikeASister, Ubuntu Condensed, Open Sans Condensed, sans-serif, MyFont;
|
||||||
@MainFontCode: Monospace,Courier;
|
@MainFontCode: Monospace,Courier;
|
||||||
@MainFontFamilyEdit: Open Sans,MyManuscript,MyFont,Ubuntu,sans-serif;
|
@MainFontFamilyEdit: Ubuntu, Open Sans,sans-serif, MyFont;
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
@MainFontFamily: Ubuntu;
|
||||||
|
@MainFontFamilyHeader: Fengardo Neue;
|
||||||
|
@MainFontCode: Monospace;
|
||||||
|
@MainFontFamilyEdit: Ubuntu;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Use the part above to customise your fonts.
|
Use the part above to customise your fonts.
|
||||||
|
@ -34,11 +41,13 @@ You can create your own manuscript / handwriting font on http://www.myscriptfont
|
||||||
|
|
||||||
@button-radius: 6px;
|
@button-radius: 6px;
|
||||||
|
|
||||||
.generateColor() { /* define mixin */
|
/* define mixin */
|
||||||
|
/* we disable it as it's sometimes a problem with lesscss
|
||||||
|
.generateColor() {
|
||||||
@background-color: color(~`@{all-background-colors}.split(',')[Math.floor(Math.random()*@{all-background-colors}.split(',').length)]`);
|
@background-color: color(~`@{all-background-colors}.split(',')[Math.floor(Math.random()*@{all-background-colors}.split(',').length)]`);
|
||||||
}
|
}
|
||||||
.generateColor(); /* call the mixin which sets the variable once */
|
.generateColor();
|
||||||
|
*/
|
||||||
|
|
||||||
/* This line below will use a random main color: */
|
/* This line below will use a random main color: */
|
||||||
/* @MainColor: @background-color; */
|
/* @MainColor: @background-color; */
|
||||||
|
@ -49,6 +58,8 @@ You can create your own manuscript / handwriting font on http://www.myscriptfont
|
||||||
/*@MainColor: #7e3821;*/
|
/*@MainColor: #7e3821;*/
|
||||||
/*@MainColor: #549136;*/
|
/*@MainColor: #549136;*/
|
||||||
/*@MainColor: #549136;*/
|
/*@MainColor: #549136;*/
|
||||||
|
/*@MainColor: #D17732;*/
|
||||||
|
/*@MainColor: #328cc1;*/
|
||||||
|
|
||||||
/* For YunoHost config */
|
/* For YunoHost config */
|
||||||
@MainColor: #__YNH_COLOR__;
|
@MainColor: #__YNH_COLOR__;
|
||||||
|
@ -66,7 +77,7 @@ You can create your own manuscript / handwriting font on http://www.myscriptfont
|
||||||
@HeaderColor: spin(@MainColor, 180);
|
@HeaderColor: spin(@MainColor, 180);
|
||||||
|
|
||||||
|
|
||||||
@MainFontColor: (#878e83 - #111);
|
@MainFontColor: (#878e83 - #222);
|
||||||
@MainFontSize: (14pt - 2);
|
@MainFontSize: (14pt - 2);
|
||||||
|
|
||||||
@RedBrick: #7F4736;
|
@RedBrick: #7F4736;
|
||||||
|
@ -129,6 +140,40 @@ You can create your own manuscript / handwriting font on http://www.myscriptfont
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
src: local('Ubuntu Condensed'),local('UbuntuCondensed-Regular'),url(../fonts/ubuntu-condensed-regular.woff) format('woff');
|
src: local('Ubuntu Condensed'),local('UbuntuCondensed-Regular'),url(../fonts/ubuntu-condensed-regular.woff) format('woff');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Ubuntu';
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: normal;
|
||||||
|
src: local('Ubuntu'),url(../fonts/ubuntu.woff) format('woff');
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Ubuntu';
|
||||||
|
font-style: italic;
|
||||||
|
font-weight: normal;
|
||||||
|
src: local('Ubuntu Italic'),url(../fonts/ubuntu-italic.woff) format('woff');
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Ubuntu';
|
||||||
|
font-style: bold;
|
||||||
|
font-weight: bold;
|
||||||
|
src: local('Ubuntu Bold'),url(../fonts/ubuntu-bold.woff) format('woff');
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Ubuntu';
|
||||||
|
font-weight: bold;
|
||||||
|
font-style: italic;
|
||||||
|
src: local('Ubuntu Italic Bold'),url(../fonts/ubuntu-bold-italic.woff) format('woff');
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/*@font-face {
|
/*@font-face {
|
||||||
font-family: 'Open Sans';
|
font-family: 'Open Sans';
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
|
@ -208,6 +253,24 @@ You can create your own manuscript / handwriting font on http://www.myscriptfont
|
||||||
src: local('Open Sans Cond Light Italic'),local('OpenSans-CondensedLightItalic'),url(../fonts/OpenSans-CondensedLightItalic.woff) format('woff');
|
src: local('Open Sans Cond Light Italic'),local('OpenSans-CondensedLightItalic'),url(../fonts/OpenSans-CondensedLightItalic.woff) format('woff');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Archivo Narrow';
|
||||||
|
font-style: bold;
|
||||||
|
font-weight: 300;
|
||||||
|
src: url(../fonts/ArchivoNarrow-Bold.woff) format('woff');
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Fengardo Neue';
|
||||||
|
font-style: bold;
|
||||||
|
font-weight: 200;
|
||||||
|
src: url(../fonts/fengardoneue-black.woff) format('woff');
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Minimaxing 1.0 by nodethirtythree design
|
Minimaxing 1.0 by nodethirtythree design
|
||||||
http://nodethirtythree.com | @nodethirtythree
|
http://nodethirtythree.com | @nodethirtythree
|
||||||
|
@ -266,6 +329,15 @@ h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover {
|
||||||
font-family: @MainFontFamilyEdit;
|
font-family: @MainFontFamilyEdit;
|
||||||
font-size: 105%;
|
font-size: 105%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.markItUpEditor
|
||||||
|
{
|
||||||
|
width: 90%;
|
||||||
|
font-family: @MainFontFamilyEdit;
|
||||||
|
color: #444;
|
||||||
|
font-size: 140%;
|
||||||
|
}
|
||||||
|
|
||||||
#diff {
|
#diff {
|
||||||
white-space: pre-wrap;
|
white-space: pre-wrap;
|
||||||
word-wrap: break-word;
|
word-wrap: break-word;
|
||||||
|
@ -394,8 +466,8 @@ body {
|
||||||
|
|
||||||
#header h1 {
|
#header h1 {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
margin: 0;
|
margin: 2px;
|
||||||
padding: 0;
|
padding: 2px;
|
||||||
border: none;
|
border: none;
|
||||||
}
|
}
|
||||||
h1, h2, h3, h4 {
|
h1, h2, h3, h4 {
|
||||||
|
@ -403,6 +475,10 @@ h1, h2, h3, h4 {
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
color: @HeaderColor;
|
color: @HeaderColor;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
|
margin-left: 0.1em;
|
||||||
|
margin-right: 0.1em;
|
||||||
|
padding-left: 2px;
|
||||||
|
padding-right: 2px;
|
||||||
}
|
}
|
||||||
h1, h2 {
|
h1, h2 {
|
||||||
border-bottom: 1px solid grey;
|
border-bottom: 1px solid grey;
|
||||||
|
@ -464,6 +540,10 @@ p, ul {
|
||||||
}
|
}
|
||||||
p {
|
p {
|
||||||
line-height: 1.7em;
|
line-height: 1.7em;
|
||||||
|
margin-left: 0.25em;
|
||||||
|
margin-right: 0.25em;
|
||||||
|
padding-left: 5px;
|
||||||
|
padding-right: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -494,7 +574,7 @@ s {
|
||||||
pre {
|
pre {
|
||||||
background-color: (@Bg-extra-light + #121212);
|
background-color: (@Bg-extra-light + #121212);
|
||||||
line-height: 1.5em;
|
line-height: 1.5em;
|
||||||
font-family: mono;
|
font-family: @MainFontCode;
|
||||||
margin: 1.0em;
|
margin: 1.0em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1147,3 +1227,30 @@ font-weight: bold;
|
||||||
.mycontent tr:hover td {
|
.mycontent tr:hover td {
|
||||||
background-color: (@TableColor + #111) /*rgba(16,80,112,0.3)*/
|
background-color: (@TableColor + #111) /*rgba(16,80,112,0.3)*/
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* Progress bar */
|
||||||
|
|
||||||
|
|
||||||
|
progress {
|
||||||
|
color: @HeaderColor;
|
||||||
|
background-color: white;
|
||||||
|
border-radius: 4px;
|
||||||
|
/*border: solid 1px;*/
|
||||||
|
width: 10em;
|
||||||
|
height: 1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
progress::-moz-progress-bar {
|
||||||
|
background: @HeaderColor;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
progress::-webkit-progress-value {
|
||||||
|
background: @HeaderColor;
|
||||||
|
}
|
||||||
|
|
||||||
|
progress::-webkit-progress-bar {
|
||||||
|
background: @HeaderColor;
|
||||||
|
}
|
||||||
|
|
|
@ -26,6 +26,6 @@ location __PATH__/ {
|
||||||
fastcgi_param SCRIPT_FILENAME $request_filename;
|
fastcgi_param SCRIPT_FILENAME $request_filename;
|
||||||
}
|
}
|
||||||
|
|
||||||
# Include SSOWAT user panel.
|
# Don't include SSOWAT user panel (can lead to some server error, like "bad gateway")
|
||||||
include conf.d/yunohost_panel.conf.inc;
|
# include conf.d/yunohost_panel.conf.inc;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue