Skip to content

Commit

Permalink
Release 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
noelboss committed Dec 16, 2018
1 parent 9d542a4 commit 4211d20
Show file tree
Hide file tree
Showing 43 changed files with 13,940 additions and 1,191 deletions.
9 changes: 9 additions & 0 deletions AdminThemeUikit/pw.css
Original file line number Diff line number Diff line change
Expand Up @@ -15297,6 +15297,11 @@ body.pw-layout-sidenav-side #pw-sidenav-bar {
float: none;
}
}
@media screen and (max-width: 767px) {
body:not(.pw-ready) #pw-masthead > * {
display: none;
}
}
.pw-sidebar-nav > li {
border-top: 1px solid #d5dfe8;
padding: 5px 0;
Expand Down Expand Up @@ -15350,6 +15355,10 @@ body.pw-layout-sidenav-side #pw-sidenav-bar {
padding: 0;
line-height: 1.1em;
}
.pw-sidebar-nav > li .pw-avatar {
height: 30px;
border-radius: 15px;
}
.pw-layout-sidenav-tree .ProDraftsNotice {
margin-top: 20px;
}
Expand Down
4 changes: 1 addition & 3 deletions AdminThemeUikit/pw.less
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,7 @@
@pw-body-background: #fff;

// Theme
@import "pw/_import.less";


//@import "pw/_import.less";
/* EXAMPLES:
// mixin to add new declaration
.hook-card() {
Expand Down
2 changes: 1 addition & 1 deletion AdminThemeUikit/pw/_import.less
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@
@import "pw-init.less";

// Theme
// @import "pw-theme-reno.less";
//@import "pw-theme-reno.less";
6 changes: 6 additions & 0 deletions AdminThemeUikit/pw/pw-mobile.less
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,9 @@
}
}
}

@media screen and (max-width: 767px) {
body:not(.pw-ready) #pw-masthead > * {
display: none;
}
}
4 changes: 4 additions & 0 deletions AdminThemeUikit/pw/pw-sidebar.less
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,10 @@
line-height: 1.1em;
}
}
.pw-avatar {
height: 30px;
border-radius: 15px;
}
}

.pw-layout-sidenav-tree .ProDraftsNotice {
Expand Down
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,21 @@

© 2018 noelboss.com


## Version 0.5.0

* Added: Checkbox toggles, thanks @chrisbennet
* Changed: Lighter Page List without lines and light edit-icons, larger font-size
* Changed: Tabs: Lighter color with shaddow
* Changed: Labels; removed bold font-weight of inputfield-labels
* Changed: Labels; hover colors of inputfield-labels
* Changed: Page-title: decreased font-size
* Upated: Latest AdminThemeUikit dependencies
* Fixed: Various small issues; dropdowns, buttons etc.
* Fixed: Dark black is now darker ;)
* Fixed: AdminHelpTab color


## Version 0.4.1

* Fix for subfolder installations: AdminThemeUikit requires relative paths
Expand All @@ -13,11 +28,13 @@
* Added new Pink Theme Variant:
* Bugfixes


## Version 0.3.0

* Introdoced a new way to inject CSS and Logo using configurations from AdminThemeUikit
* Upgraded uikit to 3.0.0-rc.17


## Version 0.2.6

* Fixed issues with descriptions and notes
Expand Down
24 changes: 19 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

### Features

* Three unique color options
* Four unique color options: blue, vibrant, black & pink
* Beautiful typografy using Roboto Condensed
* Extended breadcrumb with edit links
* Extends AdminThemeUikit, you can continue using all AdminThemeUikit features
Expand All @@ -13,15 +13,29 @@
## Color Variants:

### ProcessWire Blue

![alt text](https://raw.githubusercontent.com/noelboss/AdminThemeBoss/master/docs/images/pw-pt.png "Default ProcessWire Blue Page Tree")

![alt text](https://raw.githubusercontent.com/noelboss/AdminThemeBoss/master/docs/images/pw.png "Default ProcessWire Blue")

### Vibrant Blue
![alt text](https://raw.githubusercontent.com/noelboss/AdminThemeBoss/master/docs/images/vibrant.png "Vibrant Blue Color")

### Dark Black
![alt text](https://raw.githubusercontent.com/noelboss/AdminThemeBoss/master/docs/images/black.png "Dark Black Color")

![alt text](https://raw.githubusercontent.com/noelboss/AdminThemeBoss/master/docs/images/login.png "Dark Black Color Login")
![alt text](https://raw.githubusercontent.com/noelboss/AdminThemeBoss/master/docs/images/black-pt.png "Dark Black Page Tree")

![alt text](https://raw.githubusercontent.com/noelboss/AdminThemeBoss/master/docs/images/black.png "Dark Black")

![alt text](https://raw.githubusercontent.com/noelboss/AdminThemeBoss/master/docs/images/login.png "Dark Black Login")


### Vibrant Blue

![alt text](https://raw.githubusercontent.com/noelboss/AdminThemeBoss/master/docs/images/vibrant.png "Vibrant Blue")


### Happy Pink

![alt text](https://raw.githubusercontent.com/noelboss/AdminThemeBoss/master/docs/images/pink.png "Happy Pink")


## Requirements
Expand Down
Binary file added docs/images/black-pt.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/images/black.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/pink.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/pw-pt.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/images/pw.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/images/vibrant.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions uikit/custom/black.less
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@

// main accent color:
// pw black
@theme-primary-color: #000002;
@theme-primary-color-rgba: rgba(0, 0, 2, 0.6);
@theme-primary-color: #000000;
@theme-primary-color-rgba: rgba(0, 0, 0, 0.6);

// Original Theme
@import "../../AdminThemeUikit/pw/_import.less";
Expand Down
Loading

0 comments on commit 4211d20

Please sign in to comment.