Skip to content

Commit

Permalink
Release 0.6.2 – codename boring
Browse files Browse the repository at this point in the history
  • Loading branch information
noelboss committed Sep 17, 2019
1 parent 4826993 commit f12f33e
Show file tree
Hide file tree
Showing 16 changed files with 1,177 additions and 697 deletions.
2 changes: 1 addition & 1 deletion AdminThemeBoss.info.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"title": "Admin Theme Boss",
"summary": "A light and clear theme based on Uikit 3, extending AdminThemeUikit",
"href": "https://github.com/noelboss/AdminThemeBoss",
"version": "0.6.1",
"version": "0.6.2",
"author": "Noël Bossart",
"autoload": "template=admin",
"icon": "diamond",
Expand Down
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,23 @@

© 2019 noelboss.com

## Version 0.6.2

Codename »boring«

* Fixed: Login screen design 🖌
* Fixed: Readme 📄
* Fixed: AOS Language Switch overlapping notifications 💬


## Version 0.6.1

Everyone is going green, only AdminThemeBoss was somehow missing the trend… So this new version fixes this glaring oversight 😇

* New «Smooth Green» Color Scheme 💚
* Fixed: Small issues with asmSelect entries


## Version 0.6.0

Introducing, a refined, more colorfull and streamlined expirience:
Expand All @@ -20,12 +30,14 @@ Introducing, a refined, more colorfull and streamlined expirience:
* Improved: Under the hood improvements on how settings are saved an applied
* Fixed: Some minor bugs 🧨🦟


## Version 0.5.5

* Fixed: Display of strong and italic content inside field descriptions and notes.
* Fixed: Display of descriptions and notes with ProDrafts Livepreview
* Fixed: Aligments of checkbox labels


## Version 0.5.4

* Fixed: Reno theme regression
Expand Down
71 changes: 1 addition & 70 deletions uikit/custom/theme/black-login.less
Original file line number Diff line number Diff line change
Expand Up @@ -2,79 +2,10 @@

/* login page form */
body.ProcessLogin {

background: #222225;
box-shadow: 0 10px 50px -10px fade(@theme-primary-color, 50%);
background: @theme-primary-color;

#pw-masthead-mobile .pw-logo {
filter: grayscale(100%) brightness(200%);
}

#main {
#content form:not(#socialsLoginForm) {
.Inputfield {
input {
border-radius: 4px;
color: #eee;
border-color: transparent;
background-color: rgba(60, 60, 63, 0.4);
box-shadow: 0 3px 10px #000;

&:hover,
&:focus {
color: #fff;
background-color: rgba(60, 60, 63, 0.7);
box-shadow: @pw-box-shadow;
}

&:focus {
border-color: #55555a;
}

&::placeholder {
color: @theme-muted-text-color-alternate;
}
}

label {
color: @theme-muted-text-color-alternate;
}

button {
color: lighten(@theme-muted-text-color-alternate, 30%);
background-color: #000;

&:hover {
color: #fff;
background-color: lighten(#000, 2%);
}
}
}
}
}

#socialsLoginForm ul.Inputfields {

.ui-button {
&.ui-state-default {
box-shadow: none;
color: lighten(@theme-muted-text-color-alternate, 20%);
}
}
}

#pw-content-body {

// password links
>div {
a {
color: lighten(@theme-muted-text-color-alternate, 15%);

&:hover {
color: #fff;
}
}
}
}
}
}
2 changes: 2 additions & 0 deletions uikit/custom/theme/components/aos.less
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@

#pw-mastheads {
li.aos_adminLangSwitcher {
z-index: 3;

>a:after {
display: none;
}
Expand Down
89 changes: 87 additions & 2 deletions uikit/custom/theme/components/login.less
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,93 @@

.pw {


/* login page form */
body.ProcessLogin {

background: fade(@theme-primary-color, 2%);
box-shadow: 0 10px 50px -10px fade(@theme-primary-color, 50%);

/*#pw-masthead-mobile .pw-logo {
filter: grayscale(100%) brightness(200%);
}*/

#main {
#content form:not(#socialsLoginForm) {
.Inputfield {
input {
border-radius: 4px;
color: @theme-text-color-inverse;
box-shadow: @pw-box-shadow-medium;

border-color: lighten(@theme-primary-color, 20%);
background: fade(@theme-primary-color, 15%);

&::placeholder {
color: fade(@theme-primary-color, 40%);
}

&:hover,
&:focus {
color: #fff;
background: fade(@theme-primary-color, 20%);
box-shadow: @pw-box-shadow-small;

border-color: lighten(@theme-primary-color, 15%);
}

&:focus {
border-color: lighten(@theme-primary-color, 10%);
}
}

label {
color: @theme-muted-text-color-alternate;
}

button {
color: @theme-button-text-color;
background-color: @theme-button-background;

&:hover {
color: @theme-text-color-inverse;
background-color: @theme-button-hover-background;
}
}
}
}
}

#socialsLoginForm ul.Inputfields {

.ui-button {
&.ui-state-default {
background: fade(@theme-primary-color, 80%);
box-shadow: none;
color: @theme-button-text-color;
}
}
}

#pw-content-body {

// password links
>div {
a {
color: @theme-muted-text-color-alternate;

&:hover {
color: @theme-muted-text-color;
}
}
}
}
}
}

/*
.pw {
// login page form
body.ProcessLogin {
position: relative;
width: 370px;
Expand Down Expand Up @@ -185,4 +270,4 @@
}
}
}
}*/
15 changes: 8 additions & 7 deletions uikit/custom/theme/variables.less
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,8 @@

// shadows
@pw-box-shadow: 0 10px 30px -10px @theme-primary-color-light;
@pw-box-shadow-small: 0 7px 11px -6px fade(@theme-primary-color, 80%);
@pw-box-shadow-medium: 0 5px 20px -10px fade(@theme-primary-color, 50%);
@pw-box-shadow-small: 0 5px 15px -5px fade(@theme-primary-color, 50%);
@pw-box-shadow-subtle: 0 5px 20px -10px fade(@theme-primary-color, 20%);
@pw-primary-box-shadow: 0 5px 15px @theme-primary-color-rgba;
@pw-tabs-box-shadow: 0px -5px 15px -6px fade(#000, 3%);
Expand All @@ -92,7 +93,7 @@

@theme-button-text-color: @theme-text-color-inverse;
@theme-button-background: @theme-primary-color;
@theme-button-hover-background: @theme-text-color-inverse;
@theme-button-hover-background: darken(@theme-primary-color, 5%);
@theme-button-secondary-background: @theme-muted-text-color-alternate;
@theme-button-secondary-hover-background: darken(@theme-button-secondary-background, 5%);

Expand Down Expand Up @@ -215,8 +216,8 @@
@button-text-hover-color: @theme-primary-color; // text-only button
@pw-button-background: @theme-button-background;
@pw-button-color: @theme-button-text-color;
@pw-button-hover-background: darken(@theme-primary-color, 5%);
@pw-button-hover-color: #fff;
@pw-button-hover-background: @theme-button-hover-background;
@pw-button-hover-color: @theme-text-color-inverse;

@pw-button-secondary-background: @theme-button-secondary-background;
@pw-button-secondary-hover-background: darken(@pw-button-secondary-background, 5%);
Expand All @@ -231,7 +232,7 @@
@pw-inputfield-color-warning: @theme-warning-color;
@pw-inputfield-background-warning: lighten(@theme-warning-background, 20%);
@pw-inputfield-background-danger: lighten(@theme-danger-background, 50%);
@pw-inputfield-header-color: #11111f;
@pw-inputfield-header-color: @theme-text-color;
@pw-inputfield-header-collapsed-color: @theme-muted-text-color-alternate;
@pw-inputfield-header-hover-color: @theme-primary-color;

Expand All @@ -256,7 +257,7 @@
@pw-page-list-link-open-background-color: inherit;

@pw-page-list-icon-color: @theme-page-list-icon-color;
@pw-page-list-status-icon-color: #aaaaaa;
@pw-page-list-status-icon-color: @theme-page-list-icon-color;
@pw-page-list-action-link-color: @theme-page-list-action-link-color;
@pw-page-list-action-link-background-color: @theme-page-list-action-link-background-color;
@pw-page-list-action-link-hover-color: @theme-page-list-action-link-hover-color;
Expand All @@ -278,7 +279,7 @@
@tab-item-font-size: 16px;
@tab-item-text-transform: none;
@tab-item-active-border: @global-link-color;
@tab-item-active-background: #fff;
@tab-item-active-background: @theme-text-color-inverse;

// Offcanvas bar
@offcanvas-bar-color-mode: dark;
Expand Down
Loading

0 comments on commit f12f33e

Please sign in to comment.