branch develop updated (9fef7bd9 -> 4d701e2f)
This is an automated email from the git hooks/post-receive script. New change to branch develop in repository pollen. See https://gitlab.nuiton.org/chorem/pollen.git from 9fef7bd9 fix webpack config new 4d701e2f utilisation de variable pour le style du calendrier et ajout des tailles de polices (ref #59) The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Detailed log of new commits: commit 4d701e2f988c98c3516f8939d839a5b5e4c884a2 Author: Sylvain Bavencoff <bavencoff@codelutin.com> Date: Thu Jun 8 09:36:36 2017 +0200 utilisation de variable pour le style du calendrier et ajout des tailles de polices (ref #59) Summary of changes: pollen-ui-riot-js/src/main/web/css/main.css | 64 ++++++++++++++++++++--------- 1 file changed, 44 insertions(+), 20 deletions(-) -- To stop receiving notification emails like this one, please contact chorem.org SCM administrator <admin+scm@chorem.org>.
This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository pollen. See https://gitlab.nuiton.org/chorem/pollen.git commit 4d701e2f988c98c3516f8939d839a5b5e4c884a2 Author: Sylvain Bavencoff <bavencoff@codelutin.com> Date: Thu Jun 8 09:36:36 2017 +0200 utilisation de variable pour le style du calendrier et ajout des tailles de polices (ref #59) --- pollen-ui-riot-js/src/main/web/css/main.css | 64 ++++++++++++++++++++--------- 1 file changed, 44 insertions(+), 20 deletions(-) diff --git a/pollen-ui-riot-js/src/main/web/css/main.css b/pollen-ui-riot-js/src/main/web/css/main.css index c36f531e..776e0cd7 100644 --- a/pollen-ui-riot-js/src/main/web/css/main.css +++ b/pollen-ui-riot-js/src/main/web/css/main.css @@ -1333,16 +1333,16 @@ select.c-field:not([multiple]) { padding-left:.001em; max-width:400px; padding:.25em; - border:1px solid #96a8b2; + border:1px solid var(--default); border-radius:4px; - background-color:#fff; + background-color: var(--background); text-align:center; z-index:1; } .c-calendar__control,.c-calendar__date { - background-color:#fff; - color:#96a8b2; + background-color: var(--background); + color:var(--default); display:inline; -ms-flex:0 0 14.28%; flex:0 0 14.28%; @@ -1361,20 +1361,20 @@ select.c-field:not([multiple]) { } .c-calendar__control.c-button--active,.c-calendar__date.c-button--active { - background-color:#e8e8e8; + background-color: var(--active); } .c-calendar__control:not(:disabled):hover,.c-calendar__date:not(:disabled):hover { - background-color:#fff; + background-color: var(--background); } .c-calendar__control:not(:disabled):focus,.c-calendar__date:not(:disabled):focus { - border-color:#2196f3; - box-shadow:inset 0 0 0 2px #4dabf5; + border-color: var(--focus); + box-shadow:inset 0 0 0 2px var(--shadow); } .c-calendar__control:not(:disabled):active,.c-calendar__date:not(:disabled):active { - background-color:#e8e8e8; + background-color:var(--active); } .c-calendar__header { @@ -1403,37 +1403,61 @@ select.c-field:not([multiple]) { } .c-calendar__date:hover { - border:1px solid #96a8b2; + border:1px solid var(--default); } .c-calendar__date--in-month { - color:#111; + color: var(--default); } .c-calendar__date--today { - border-color:#cad4d8; + border-color: var(--info); } .c-calendar__date--selected,.c-calendar__date--selected:hover { border:1px solid transparent; - background-color:#2c3e50; - color:#fff; - border-color:#2c3e50; + background-color:var(--brand); + color: var(--background); + border-color:var(--brand); } .c-calendar__date--selected.c-button--active,.c-calendar__date--selected:hover.c-button--active { - background-color:#1c2732; + background-color: var(--brand-active); } .c-calendar__date--selected:hover:not(:disabled):hover,.c-calendar__date--selected:not(:disabled):hover { - background-color:#3c556e; + background-color:var(--brand-hover); } .c-calendar__date--selected:hover:not(:disabled):focus,.c-calendar__date--selected:not(:disabled):focus { - border-color:#2196f3; - box-shadow:inset 0 0 0 2px #4dabf5; + border-color:var(--focus); + box-shadow:inset 0 0 0 2px var(--shadow); } .c-calendar__date--selected:hover:not(:disabled):active,.c-calendar__date--selected:not(:disabled):active { - background-color:#1c2732; + background-color: var(--brand-active); +} + +.u-super { + font-size:2em; +} + +.u-xlarge { + font-size:1.5em; +} + +.u-large { + font-size:1.17em; +} + +.u-medium { + font-size:1em; +} + +.u-small { + font-size:.83em; +} + +.u-xsmall{ + font-size:.67em; } -- To stop receiving notification emails like this one, please contact chorem.org SCM administrator <admin+scm@chorem.org>.
participants (1)
-
chorem.org scm