-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12 from publishpress/development
Development
- Loading branch information
Showing
10 changed files
with
493 additions
and
219 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,191 @@ | ||
/** | ||
* @package PublishPress | ||
* @author PublishPress | ||
* | ||
* Copyright (c) 2018 PublishPress | ||
* | ||
* ------------------------------------------------------------------------------ | ||
* Based on Edit Flow | ||
* Author: Daniel Bachhuber, Scott Bressler, Mohammad Jangda, Automattic, and | ||
* others | ||
* Copyright (c) 2009-2016 Mohammad Jangda, Daniel Bachhuber, et al. | ||
* ------------------------------------------------------------------------------ | ||
* | ||
* This file is part of PublishPress | ||
* | ||
* PublishPress is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* PublishPress is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with PublishPress. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
.pressshack-admin-wrapper a:link, | ||
.pressshack-admin-wrapper a:visited, | ||
.pressshack-admin-wrapper a:active, | ||
.pressshack-admin-wrapper a:hover { | ||
text-decoration: none; | ||
} | ||
|
||
.pressshack-admin-wrapper a, | ||
.pressshack-admin-wrapper button, | ||
.pressshack-admin-wrapper button::before { | ||
-webkit-transition: all 200ms ease-in-out; | ||
-moz-transition: all 200ms ease-in-out; | ||
-o-transition: all 200ms ease-in-out; | ||
transition: all 200ms ease-in-out; | ||
} | ||
|
||
.pressshack-admin-wrapper a, | ||
.pressshack-admin-wrapper a div, | ||
.pressshack-admin-wrapper a p { | ||
color: #655997; | ||
} | ||
|
||
.pressshack-admin-wrapper a:hover, | ||
.pressshack-admin-wrapper a:focus, | ||
.pressshack-admin-wrapper a:active, | ||
.pressshack-admin-wrapper a:hover div, | ||
.pressshack-admin-wrapper a:focus div, | ||
.pressshack-admin-wrapper a:active div, | ||
.pressshack-admin-wrapper a:hover p, | ||
.pressshack-admin-wrapper a:focus p, | ||
.pressshack-admin-wrapper a:active p, | ||
.pressshack-admin-wrapper a:hover .dashicons:before, | ||
.pressshack-admin-wrapper a:focus .dashicons:before, | ||
.pressshack-admin-wrapper a:active .dashicons:before { | ||
color: #5A4F87; | ||
box-shadow: none; | ||
-moz-box-shadow: none; | ||
-webkit-box-shadow: none; | ||
-o-box-shadow: none; | ||
} | ||
|
||
.pressshack-admin-wrapper > header h1 a, | ||
.pressshack-admin-wrapper > header h1 a:hover, | ||
.pressshack-admin-wrapper > header h1 a:focus, | ||
.pressshack-admin-wrapper > header h1 a:active { | ||
color: #23282d; | ||
} | ||
|
||
.pressshack-admin-wrapper .nav-tab-wrapper .nav-tab { | ||
color: inherit; | ||
} | ||
|
||
.pressshack-admin-wrapper .nav-tab-wrapper .nav-tab-active, | ||
.pressshack-admin-wrapper .nav-tab-wrapper .nav-tab:hover, | ||
.pressshack-admin-wrapper .nav-tab-wrapper .nav-tab:active, | ||
.pressshack-admin-wrapper .nav-tab-wrapper .nav-tab:focus { | ||
border-top-color: #655997; | ||
color: #655997; | ||
} | ||
|
||
.pressshack-admin-wrapper > footer { | ||
text-align: center; | ||
} | ||
|
||
.pressshack-admin-wrapper > footer > div.pp-rating { | ||
font-size: 12px; | ||
margin-bottom: 10px; | ||
margin-top: 30px; | ||
} | ||
|
||
.pressshack-admin-wrapper > footer * { | ||
color: #777; | ||
} | ||
|
||
.pressshack-admin-wrapper > footer > nav ul { | ||
list-style: none; | ||
} | ||
|
||
.pressshack-admin-wrapper > footer > nav ul > li { | ||
display: inline-block; | ||
} | ||
|
||
.pressshack-admin-wrapper > footer > nav ul > li:not(:first-child) { | ||
margin-left: 15px; | ||
} | ||
|
||
.pressshack-admin-wrapper > footer > nav ul > li > a { | ||
font-weight: bold; | ||
} | ||
|
||
.pressshack-admin-wrapper > footer .dashicons.dashicons-star-filled { | ||
line-height: 18px; | ||
font-size: 12px; | ||
width: 12px; | ||
height: 12px; | ||
color: #FFB300; | ||
-webkit-transition: color 200ms ease-in-out; | ||
-moz-transition: color 200ms ease-in-out; | ||
-o-transition: color 200ms ease-in-out; | ||
transition: color 200ms ease-in-out; | ||
} | ||
|
||
.pressshack-admin-wrapper button:not(.notice-dismiss), | ||
.pressshack-admin-wrapper .button:not(.notice-dismiss) { | ||
-webkit-border-radius: 5px; | ||
-moz-border-radius: 5px; | ||
border-radius: 5px; | ||
text-shadow: initial; | ||
-webkit-box-shadow: initial; | ||
-moz-box-shadow: initial; | ||
box-shadow: initial; | ||
vertical-align: middle; | ||
line-height: 0; | ||
min-height: 28px; | ||
text-decoration: none; | ||
padding: 15px 10px; | ||
border-width: 2px; | ||
border-style: solid; | ||
} | ||
|
||
.pressshack-admin-wrapper .button-primary { | ||
background-color: #FFB300; | ||
border-color: #C58C07; | ||
color: #754D26; | ||
|
||
text-shadow: none; | ||
} | ||
|
||
.pressshack-admin-wrapper .button-primary:hover, | ||
.pressshack-admin-wrapper .button-primary:active, | ||
.pressshack-admin-wrapper .button-primary:focus { | ||
background-color: #F3AC04; | ||
border-color: #C58C07; | ||
color: #333; | ||
outline: none; | ||
box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 1px 2px rgba(0, 0, 0, 0.05); | ||
-moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 1px 2px rgba(0, 0, 0, 0.05); | ||
-webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 1px 2px rgba(0, 0, 0, 0.05); | ||
-o-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 1px 2px rgba(0, 0, 0, 0.05); | ||
} | ||
|
||
.pressshack-admin-wrapper .button:not(.notice-dismiss):hover, | ||
.pressshack-admin-wrapper .button:not(.notice-dismiss):active, | ||
.pressshack-admin-wrapper .button:not(.notice-dismiss):focus { | ||
outline: none; | ||
-webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 1px 2px rgba(0, 0, 0, 0.05); | ||
-moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 1px 2px rgba(0, 0, 0, 0.05); | ||
box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 1px 2px rgba(0, 0, 0, 0.05); | ||
} | ||
|
||
.pressshack-admin-wrapper .pp-pressshack-logo img { | ||
width: 170px; | ||
} | ||
|
||
/** | ||
* Fremius tweaks | ||
*/ | ||
|
||
#piframe, | ||
.fs-secure-notice { | ||
display: none; | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.