- updated menu icon for our plugin
- added watchCss command to watch only CSS files
- added Status column in Newsletters listing
- added progress bar styles
- fixed issue with JS assets being loaded twice on non MP pages
- changed subscriber_ids to segment_ids in addQueue
This commit is contained in:
Jonathan Labreuille
2015-12-02 12:25:28 +01:00
committed by MrCasual
parent 72d1eb79a6
commit bf58d8a22d
10 changed files with 134 additions and 28 deletions

View File

@@ -13,4 +13,5 @@
@require 'breadcrumb'
@require 'form'
@require 'settings'
@require 'settings'
@require 'progress_bar'

View File

@@ -26,3 +26,25 @@ textarea.regular-text
@media screen and (max-width: 782px)
.select2-container
width: 100% !important
// progress bars
progress-border-radius = 5px
progress-background = #efefef
progress-foreground = #69b1e9
progress
background-color: progress-background;
height: 2em
border: 0
width: 100%
progress::-webkit-progress-bar
background-color: progress-background;
progress::-webkit-progress-value
background-color: progress-foreground
border-radius: progress-border-radius
progress::-moz-progress-bar
background-color: progress-foreground
border-radius: progress-border-radius

View File

@@ -0,0 +1,21 @@
.mailpoet_progress
background-color: #efefef
height: 25px
padding: 0
width: 100%
margin: 0
border-radius: 5px
.mailpoet_progress span
display: inline-block
height: 100%
border-radius: 3px
box-shadow: 0 1px 0 rgba(255, 255, 255, .5) inset
.blue span
background-color: #34c2e3
background-image: linear-gradient(top, #34c2e3, darken(#34c2e3, 20%))
.orange span
background-color: #fecf23
background-image: linear-gradient(top, #fecf23, #fd9215)