Add gravity flow demo
This commit is contained in:
@@ -0,0 +1,35 @@
|
||||
|
||||
thead tr {background: #FFF}
|
||||
tr:nth-child(even) {background: #f9f9f9}
|
||||
tr:nth-child(odd) {background: #FFF}
|
||||
|
||||
|
||||
|
||||
#gravityflow-no-activity-container{
|
||||
|
||||
-webkit-transform-style: preserve-3d;
|
||||
-moz-transform-style: preserve-3d;
|
||||
transform-style: preserve-3d;
|
||||
|
||||
height:400px;
|
||||
text-align:center;
|
||||
}
|
||||
|
||||
#gravityflow-no-activity-content{
|
||||
color: silver;
|
||||
font-size: 2em;
|
||||
position: relative;
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
}
|
||||
|
||||
|
||||
|
||||
table#gravityflow-activity th[data-label="ID"],
|
||||
table#gravityflow-activity td[data-label="ID"] {
|
||||
width:70px!important;
|
||||
}
|
||||
|
||||
table#gravityflow-activity{
|
||||
margin-top:10px;
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
@font-face {
|
||||
font-family: 'gravityflow';
|
||||
src: url('../fonts/gravityflow.eot');
|
||||
src: url('../fonts/gravityflow.eot?#iefix') format('embedded-opentype'),
|
||||
url('../fonts/gravityflow.woff') format('woff'),
|
||||
url('../fonts/gravityflow.ttf') format('truetype'),
|
||||
url('../fonts/gravityflow.svg#gravityflow') format('svg');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
.dashicons-gravityflow:before {
|
||||
display: inline-block;
|
||||
font-family: 'gravityflow';
|
||||
line-height: 1;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
content: 'a';
|
||||
}
|
||||
@@ -0,0 +1,36 @@
|
||||
.gravityflow-discussion-item{
|
||||
margin-bottom:10px;
|
||||
}
|
||||
|
||||
.gravityflow-dicussion-item-name {
|
||||
color:black;
|
||||
font-weight:bold;
|
||||
}
|
||||
|
||||
.gravityflow-dicussion-item-date {
|
||||
color: #9b9b9b;
|
||||
margin-left:8px;
|
||||
font-size:90%;
|
||||
}
|
||||
|
||||
.rtl .gravityflow-dicussion-item-date {
|
||||
margin-right:8px;
|
||||
}
|
||||
|
||||
.gravityflow-dicussion-item-toggle-display {
|
||||
float: right;
|
||||
}
|
||||
|
||||
.rtl .gravityflow-dicussion-item-toggle-display {
|
||||
float: left;
|
||||
}
|
||||
|
||||
@media print {
|
||||
.gravityflow-dicussion-item-hidden {
|
||||
display:block !important;
|
||||
}
|
||||
|
||||
.gravityflow-dicussion-item-toggle-display {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,423 @@
|
||||
.gravityflow-action-buttons{
|
||||
text-align:right;
|
||||
}
|
||||
|
||||
/* The little triangle indicator */
|
||||
.gravityflow-editable-field.green-triangle:not(.gfield_error) label.gfield_label {
|
||||
width:100%;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.gravityflow-editable-field.green-triangle:not(.gfield_error) label.gfield_label::before,
|
||||
.gravityflow-editable-field.green-triangle:not(.gfield_error) label.gfield_label::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
border-color: transparent;
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
.rtl .gravityflow-editable-field.green-triangle:not(.gfield_error) label.gfield_label::before,
|
||||
.rtl .gravityflow-editable-field.green-triangle:not(.gfield_error) label.gfield_label::after {
|
||||
left: auto;
|
||||
right: 0;
|
||||
}
|
||||
|
||||
.gravityflow-editable-field.green-triangle:not(.gfield_error) label.gfield_label::before {
|
||||
border-width: 0.4em;
|
||||
border-left-color: #ccc;
|
||||
border-top-color: #ccc;
|
||||
}
|
||||
|
||||
.rtl .gravityflow-editable-field.green-triangle:not(.gfield_error) label.gfield_label::before {
|
||||
border-left-color: transparent;
|
||||
border-right-color: #ccc;
|
||||
}
|
||||
|
||||
.gravityflow-editable-field.green-triangle:not(.gfield_error) label.gfield_label::after {
|
||||
border-radius: 0.1em;
|
||||
border-width: 0.4em;
|
||||
border-left-color: #0c0;
|
||||
border-top-color: #0c0;
|
||||
}
|
||||
|
||||
.rtl .gravityflow-editable-field.green-triangle:not(.gfield_error) label.gfield_label::after {
|
||||
border-left-color: transparent;
|
||||
border-right-color: #0c0;
|
||||
}
|
||||
|
||||
.gravityflow-editable-field.green-background:not(.gfield_error) {
|
||||
list-style-position:inside;
|
||||
border: 1px solid green;
|
||||
background: #eeffee;
|
||||
padding:10px;
|
||||
}
|
||||
|
||||
#minor-publishing{
|
||||
padding:10px;
|
||||
}
|
||||
|
||||
#gravityflow_save_progress_button {
|
||||
margin-right:10px;
|
||||
}
|
||||
|
||||
.rtl #gravityflow_save_progress_button {
|
||||
margin-left:10px;
|
||||
}
|
||||
|
||||
/* Notes */
|
||||
|
||||
.gravityflow-note-avatar{
|
||||
float: left;
|
||||
width: 84px;
|
||||
text-align:center;
|
||||
padding-right:10px;
|
||||
}
|
||||
|
||||
.rtl .gravityflow-note-avatar{
|
||||
float: right;
|
||||
padding-left:10px;
|
||||
}
|
||||
|
||||
|
||||
.gravityflow-note-body-wrap{
|
||||
border: 1px solid #E0E0E0;
|
||||
margin-left: 100px;
|
||||
padding: 10px;
|
||||
display:block;
|
||||
}
|
||||
|
||||
.rtl .gravityflow-note-body-wrap{
|
||||
margin-right: 100px;
|
||||
}
|
||||
|
||||
.gravityflow-note-body{
|
||||
line-height: 1.3em;
|
||||
overflow: auto;
|
||||
width: 100%;
|
||||
word-wrap: break-word;
|
||||
display:block;
|
||||
}
|
||||
|
||||
.gravityflow-note-header:before,
|
||||
.gravityflow-note-header:after {
|
||||
content: "";
|
||||
display: table;
|
||||
line-height: 0;
|
||||
}
|
||||
|
||||
.gravityflow-note-header:after{
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.gravityflow-note-title{
|
||||
float: left;
|
||||
margin-bottom:0.5em;
|
||||
font-size:1.2em;
|
||||
color:#939FA5;
|
||||
}
|
||||
|
||||
.rtl .gravityflow-note-title{
|
||||
float: right;
|
||||
}
|
||||
|
||||
.gravityflow-note-title a {
|
||||
font-weight:bold;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.gravityflow-note-body{
|
||||
overflow-y: hidden;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.gravityflow-note-meta{
|
||||
color: #939FA5;
|
||||
float: right;
|
||||
font-size: 11px;
|
||||
text-align: right;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.rtl .gravityflow-note-meta{
|
||||
float: left;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.gravityflow-note-body-wrap{
|
||||
background-color:#FFF;
|
||||
}
|
||||
|
||||
.gravityflow-note-user{
|
||||
background-color:#FFF8DC;
|
||||
}
|
||||
|
||||
#gravityflow-add-note-container{
|
||||
float:right;
|
||||
}
|
||||
|
||||
.rtl #gravityflow-add-note-container{
|
||||
float:left;
|
||||
}
|
||||
|
||||
.gravityflow-note{
|
||||
margin:20px 0 30px;
|
||||
clear:both;
|
||||
width:100%;
|
||||
}
|
||||
|
||||
#gravityflow-note-content{
|
||||
padding:10px;
|
||||
float:left;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.rtl #gravityflow-note-content{
|
||||
float:right;
|
||||
}
|
||||
|
||||
.gravityflow-notes-checkbox{
|
||||
width:20px;
|
||||
display:table-cell;
|
||||
vertical-align:top;
|
||||
padding:15px 0 0 5px;
|
||||
|
||||
}
|
||||
|
||||
#gravityflow-note-new{
|
||||
width: 100%;
|
||||
display: table;
|
||||
}
|
||||
|
||||
.gravityflow-note-body{
|
||||
line-height: 1.3em;
|
||||
overflow: auto;
|
||||
width: 100%;
|
||||
word-wrap: break-word;
|
||||
display:block;
|
||||
}
|
||||
|
||||
.gravityflow-note-header:before,
|
||||
.gravityflow-note-header:after
|
||||
{
|
||||
content: "";
|
||||
display: table;
|
||||
line-height: 0;
|
||||
}
|
||||
|
||||
.gravityflow-note-header:after{
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.gravityflow-note-title{
|
||||
float: left;
|
||||
margin-bottom:0.5em;
|
||||
font-size:1.2em;
|
||||
color:#939FA5;
|
||||
}
|
||||
|
||||
.rtl .gravityflow-note-title {
|
||||
float: right;
|
||||
}
|
||||
|
||||
.gravityflow-note-title a {
|
||||
font-weight:bold;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.gravityflow-note-body{
|
||||
overflow-y: hidden;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.gravityflow-note-meta{
|
||||
color: #939FA5;
|
||||
float: right;
|
||||
font-size: 11px;
|
||||
text-align: right;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.rtl .gravityflow-note-meta{
|
||||
float: left;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
#gravityflow-admin-action{
|
||||
width:170px;
|
||||
|
||||
}
|
||||
|
||||
#gravityflow-note{
|
||||
width:100%;
|
||||
}
|
||||
|
||||
|
||||
@media screen and (max-width: 850px) {
|
||||
.has-right-sidebar #post-body {
|
||||
clear: left;
|
||||
float: right;
|
||||
width: 100%;
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
.rtl .has-right-sidebar #post-body {
|
||||
clear: right;
|
||||
float: left;
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
.has-right-sidebar .inner-sidebar{
|
||||
width:100%;
|
||||
}
|
||||
|
||||
.has-right-sidebar #post-body-content {
|
||||
margin-right: 0!important;
|
||||
}
|
||||
|
||||
.rtl .has-right-sidebar #post-body-content {
|
||||
margin-left: 0!important;
|
||||
}
|
||||
}
|
||||
|
||||
.gravityflow-note-avatar span > i {
|
||||
width:65px;
|
||||
height:65px;
|
||||
display:inline-block;
|
||||
font-size:4em;
|
||||
margin:5px;
|
||||
color:#0074a2;
|
||||
}
|
||||
|
||||
table.entry-detail-view td.detail-view{
|
||||
border-right: 1px;
|
||||
border-left: 1px;
|
||||
border-top: 0;
|
||||
border-bottom: 0;
|
||||
}
|
||||
|
||||
.gravityflow-field-value {
|
||||
padding: 7px 7px 7px 40px;
|
||||
line-height: 1.8;
|
||||
}
|
||||
|
||||
.rtl .gravityflow-field-value {
|
||||
padding: 7px 40px 7px 7px;
|
||||
}
|
||||
|
||||
.gravityflow-field-value p {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.rtl .gravityflow-field-value p {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.gravityflow-field-value ul.bulleted {
|
||||
margin-left: 12px;
|
||||
}
|
||||
|
||||
.rtl .gravityflow-field-value ul.bulleted {
|
||||
margin-right: 12px;
|
||||
}
|
||||
|
||||
.gravityflow-field-value ul.bulleted li {
|
||||
list-style-type: disc;
|
||||
}
|
||||
|
||||
.gfield.gravityflow-display-field label.gfield_label,
|
||||
.gfield.gravityflow-editable-field:not(.green-background):not(.gfield_error) label.gfield_label{
|
||||
background-color: #EAF2FA;
|
||||
border-top: 1px solid #DFDFDF;
|
||||
border-bottom: 1px solid #FFF;
|
||||
line-height: 1.5;
|
||||
padding: 7px;
|
||||
width:100%;
|
||||
margin:0;
|
||||
}
|
||||
|
||||
.gravityflow-editable-field.gfield.green-background label.gfield_label{
|
||||
border: 0;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
.gravityflow-editable-field.gfield.green-background{
|
||||
background-color: #eeffee;
|
||||
padding: 7px;
|
||||
}
|
||||
|
||||
td.gravityflow-order-summary{
|
||||
border-top:1px solid #DDDDDD;
|
||||
background-color: #EFEFEF;
|
||||
font-weight: bold;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
.gravityflow-instructions div.inside ul,
|
||||
.gravityflow-instructions div.inside ol {
|
||||
margin: 1em 0 1em 2em;
|
||||
}
|
||||
|
||||
.rtl .gravityflow-instructions div.inside ul,
|
||||
.rtl .gravityflow-instructions div.inside ol {
|
||||
margin: 1em 2em 1em 0;
|
||||
}
|
||||
|
||||
.gravityflow-instructions div.inside ul li {
|
||||
list-style-type: disc;
|
||||
}
|
||||
|
||||
.gravityflow-instructions div.inside ol li {
|
||||
list-style-type: decimal;
|
||||
}
|
||||
|
||||
span.gf_admin_page_formid {
|
||||
background-color: #d4662c;
|
||||
border: medium none;
|
||||
border-radius: 2px;
|
||||
color: #fff;
|
||||
display: inline-block;
|
||||
font-size: 13px;
|
||||
font-weight: 600;
|
||||
line-height: 2;
|
||||
margin: 0 2px 0 12px;
|
||||
padding: 0 8px;
|
||||
position: relative;
|
||||
text-decoration: none;
|
||||
text-shadow: none;
|
||||
top: -3px;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.rtl span.gf_admin_page_formid {
|
||||
margin: 0 12px 0 2px;
|
||||
}
|
||||
|
||||
.gravityflow-box-title{
|
||||
cursor:default;
|
||||
border-bottom: 1px solid #eee;
|
||||
}
|
||||
|
||||
/* Step Highlight */
|
||||
table#gravityflow-inbox tbody tr{
|
||||
border-left-width: 3px;
|
||||
border-left-style: solid;
|
||||
}
|
||||
|
||||
.rtl table#gravityflow-inbox tbody tr{
|
||||
border-left-width: 0;
|
||||
border-left-style: none;
|
||||
border-right-width: 3px;
|
||||
border-right-style: solid;
|
||||
}
|
||||
|
||||
@media print {
|
||||
.gravityflow-dicussion-item-hidden {
|
||||
display:block !important;
|
||||
}
|
||||
|
||||
.gravityflow-dicussion-item-toggle-display {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,61 @@
|
||||
table { border-collapse: collapse; }
|
||||
.ui-sortable-helper {
|
||||
background-color: white!important;
|
||||
|
||||
-webkit-box-shadow: 6px 6px 28px -9px rgba(0,0,0,0.75);
|
||||
-moz-box-shadow: 6px 6px 28px -9px rgba(0,0,0,0.75);
|
||||
box-shadow: 6px 6px 28px -9px rgba(0,0,0,0.75);
|
||||
|
||||
transform: rotate(1deg);
|
||||
-moz-transform: rotate(1deg);
|
||||
-webkit-transform: rotate(1deg);
|
||||
}
|
||||
|
||||
.rtl .ui-sortable-helper {
|
||||
-webkit-box-shadow: -6px 6px 28px -9px rgba(0,0,0,0.75);
|
||||
-moz-box-shadow: -6px 6px 28px -9px rgba(0,0,0,0.75);
|
||||
box-shadow: -6px 6px 28px -9px rgba(0,0,0,0.75);
|
||||
|
||||
transform: rotate(-1deg);
|
||||
-moz-transform: rotate(-1deg);
|
||||
-webkit-transform: rotate(-1deg);
|
||||
}
|
||||
|
||||
.step-drop-zone {
|
||||
border: 1px dashed #bbb;
|
||||
background-color: #FFF !important;
|
||||
margin: 0 auto 10px;
|
||||
height: 75px;
|
||||
width: 100%;
|
||||
-webkit-box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.widefat .sort-column {
|
||||
vertical-align: top;
|
||||
width: 2.2em;
|
||||
}
|
||||
|
||||
.feed-sort-handle{
|
||||
cursor: move;
|
||||
padding: 10px;
|
||||
}
|
||||
.step-drop-zone td:first-child,
|
||||
th.check-column,
|
||||
td.check-column,
|
||||
.tablenav.top,
|
||||
.tablenav.bottom{
|
||||
display: none;
|
||||
}
|
||||
|
||||
td.column-step_highlight .step_highlight_color {
|
||||
width: 0.25em;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
th.column-step_highlight, td.column-step_highlight {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.row-actions .step_id { color: #555; }
|
||||
@@ -0,0 +1,256 @@
|
||||
.repeater-buttons{
|
||||
display:inline-block;
|
||||
}
|
||||
.gform-routing-users,
|
||||
.gform-routing-field{
|
||||
width:100%;
|
||||
min-width:150px;
|
||||
}
|
||||
.gform-routing-operator{
|
||||
width:120px;
|
||||
}
|
||||
.gform-routing-value{
|
||||
width:190px;
|
||||
}
|
||||
|
||||
.mt-_gaddon_setting_workflow_notification_message,
|
||||
.gravityflow-tab-field span[class^="mt-_gaddon_setting_"] {
|
||||
float: right;
|
||||
position: relative;
|
||||
right: 15px;
|
||||
top: 90px;
|
||||
}
|
||||
|
||||
.rtl .mt-_gaddon_setting_workflow_notification_message,
|
||||
.rtl .gravityflow-tab-field span[class^="mt-_gaddon_setting_"] {
|
||||
float: left;
|
||||
left: 15px;
|
||||
}
|
||||
|
||||
#wp-_gaddon_setting_workflow_notification_message-wrap,
|
||||
.gravityflow-tab-field div.wp-editor-wrap {
|
||||
margin-right: 15px;
|
||||
}
|
||||
|
||||
.rtl #wp-_gaddon_setting_workflow_notification_message-wrap,
|
||||
.rtl .gravityflow-tab-field div.wp-editor-wrap {
|
||||
margin-left: 15px;
|
||||
}
|
||||
|
||||
.gform-routing-row{
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
#assignees,
|
||||
#editable_fields{
|
||||
position: absolute;
|
||||
left: -9999px;
|
||||
}
|
||||
|
||||
.rtl #assignees,
|
||||
.rtl #editable_fields{
|
||||
right: -9999px;
|
||||
left: auto;
|
||||
}
|
||||
|
||||
table.gforms_form_settings th{
|
||||
border-left: 0;
|
||||
padding-left: 0!important;
|
||||
}
|
||||
|
||||
table.gforms_form_settings tr.gravityflow_sub_setting th{
|
||||
border-left: 1px dashed #dfdfdf;
|
||||
padding-left: 10px!important;
|
||||
}
|
||||
|
||||
table.gforms_form_settings tr.gravityflow_sub_setting td{
|
||||
padding-left: 10px;
|
||||
}
|
||||
|
||||
.rtl table.gforms_form_settings th{
|
||||
border-right: 0;
|
||||
padding-right: 0!important;
|
||||
}
|
||||
|
||||
.rtl table.gforms_form_settings tr.gravityflow_sub_setting th{
|
||||
border-right: 1px dashed #dfdfdf;
|
||||
padding-right: 10px!important;
|
||||
}
|
||||
|
||||
.rtl table.gforms_form_settings tr.gravityflow_sub_setting td{
|
||||
padding-right: 10px;
|
||||
}
|
||||
|
||||
table.gform-routings thead th{
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
table.gform-routings tr.gform-routing-row td{
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
table.gform-routings tr.gform-routing-row td .repeater-buttons{
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.ui-tabs-nav{
|
||||
background-color:#f6fbfd !important;
|
||||
}
|
||||
|
||||
.gravityflow-tab-checked{
|
||||
color:green;
|
||||
}
|
||||
|
||||
.gravityflow-tab-field{
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.gravityflow-tab-field-label{
|
||||
margin-bottom: 4px;
|
||||
font-weight:bold;
|
||||
}
|
||||
|
||||
.gravityflow-user-routing{
|
||||
border:1px solid #EEE;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.ms-container{
|
||||
width:550px!important;
|
||||
}
|
||||
|
||||
.gform-routing-input-field{
|
||||
width:100%;
|
||||
}
|
||||
|
||||
#gaddon-setting-row-step_type td label{
|
||||
display:inline-block;
|
||||
margin-bottom: 5px;
|
||||
color:black;
|
||||
height:85px;
|
||||
}
|
||||
|
||||
.gravityflow-schedule-type-container{
|
||||
margin:5px 0 5px 0;
|
||||
}
|
||||
|
||||
tr#gaddon-setting-row-step_type input:checked + label > span{
|
||||
-webkit-filter: none;
|
||||
-moz-filter: none;
|
||||
filter: none;
|
||||
}
|
||||
tr#gaddon-setting-row-step_type input:checked + label {
|
||||
background-color:white;
|
||||
border: 1px solid #CCCCCC;
|
||||
}
|
||||
tr#gaddon-setting-row-step_type label > span {
|
||||
background-repeat:no-repeat;
|
||||
display:inline-block;
|
||||
-webkit-transition: all 100ms ease-in;
|
||||
-moz-transition: all 100ms ease-in;
|
||||
transition: all 100ms ease-in;
|
||||
-webkit-filter: brightness(1.8) grayscale(1) opacity(.5);
|
||||
-moz-filter: brightness(1.8) grayscale(1) opacity(.5);
|
||||
filter: brightness(1.8) grayscale(1) opacity(.5);
|
||||
}
|
||||
|
||||
.gravityflow-disabled label{
|
||||
cursor:default!important;
|
||||
}
|
||||
|
||||
tr#gaddon-setting-row-step_type input:not([disabled]):not([checked]) + label > span:hover{
|
||||
-webkit-filter: brightness(1.2) grayscale(.5) opacity(.9);
|
||||
-moz-filter: brightness(1.2) grayscale(.5) opacity(.9);
|
||||
filter: brightness(1.2) grayscale(.5) opacity(.9);
|
||||
}
|
||||
|
||||
tr#gaddon-setting-row-step_type input{
|
||||
display:none;
|
||||
}
|
||||
tr#gaddon-setting-row-step_type label > span{
|
||||
padding-top:5px;
|
||||
width:130px;
|
||||
height:65px;
|
||||
}
|
||||
|
||||
tr#gaddon-setting-row-step_type label > span > img{
|
||||
width:32px;
|
||||
height:32px;
|
||||
margin:5px;
|
||||
vertical-align:middle;
|
||||
}
|
||||
|
||||
tr#gaddon-setting-row-step_type label{
|
||||
border:1px solid #EEEEEE;
|
||||
background-color:#F9F9F9;
|
||||
}
|
||||
|
||||
tr#gaddon-setting-row-step_type .gaddon-setting-radio{
|
||||
text-align:center;
|
||||
}
|
||||
|
||||
tr#gaddon-setting-row-step_type label > span > i {
|
||||
width:32px;
|
||||
height:32px;
|
||||
display:inline-block;
|
||||
font-size:2.5em;
|
||||
margin:5px;
|
||||
color:#0074a2;
|
||||
}
|
||||
|
||||
.gravityflow-step-highlight-type-container,
|
||||
.gravityflow-step-highlight-color-container,
|
||||
.gravityflow-schedule-type-container,
|
||||
.gravityflow-schedule-delay-container,
|
||||
.gravityflow-schedule-date-container,
|
||||
.gravityflow-expiration-type-container,
|
||||
.gravityflow-expiration-delay-container,
|
||||
.gravityflow-expiration-date-container{
|
||||
margin: 10px 0 10px 0;
|
||||
}
|
||||
|
||||
.gravityflow-step-highlight-type-container {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.gravityflow_display_fields_selected_container{
|
||||
margin-top:5px;
|
||||
}
|
||||
|
||||
.gravityflow-step-highlight-color-container .wp-picker-container {
|
||||
margin-top: 5px;
|
||||
}
|
||||
|
||||
.settings-field-map-table .custom-value-reset {
|
||||
background: url( ../images/xit.gif ) no-repeat scroll 0 0 transparent;
|
||||
cursor:pointer;
|
||||
display:none;
|
||||
position:absolute;
|
||||
text-indent:-9999px;
|
||||
width:10px;
|
||||
height: 10px;
|
||||
-moz-transition: none;
|
||||
-webkit-transition: none;
|
||||
-o-transition: color 0 ease-in;
|
||||
transition: none;
|
||||
}
|
||||
|
||||
.rtl .settings-field-map-table .custom-value-reset {
|
||||
background: url( ../images/xit.gif ) no-repeat scroll 100% 0 transparent;
|
||||
text-indent:9999px;
|
||||
}
|
||||
|
||||
.settings-field-map-table .custom-value-reset {
|
||||
margin-top: 10px;
|
||||
margin-left: 165px;
|
||||
}
|
||||
|
||||
.rtl .settings-field-map-table .custom-value-reset {
|
||||
margin-right: 165px;
|
||||
}
|
||||
|
||||
.settings-field-map-table .custom-value-container:hover .custom-value-reset { display:block; }
|
||||
|
||||
.gravityflow-sub-setting{
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
@@ -0,0 +1,848 @@
|
||||
/* ENTRY DETAIL */
|
||||
|
||||
html[dir="rtl"] body.rtl * {
|
||||
direction: rtl !important;
|
||||
}
|
||||
|
||||
table.entry-detail-view {
|
||||
width:100%;
|
||||
border:0;
|
||||
table-layout: fixed;
|
||||
}
|
||||
table.entry-detail-view th,
|
||||
table.entry-detail-view td{
|
||||
border-right:0;
|
||||
}
|
||||
.rtl table.entry-detail-view th,
|
||||
.rtl table.entry-detail-view td{
|
||||
border-left:0;
|
||||
}
|
||||
.gravityflow-no-sidebar .gravityflow-action-buttons{
|
||||
text-align:left;
|
||||
}
|
||||
.rtl .gravityflow-no-sidebar .gravityflow-action-buttons{
|
||||
text-align:right;
|
||||
}
|
||||
.postbox {
|
||||
background: #fff none repeat scroll 0 0;
|
||||
min-width: 200px;
|
||||
position: relative;
|
||||
line-height: 1;
|
||||
margin-bottom: 20px;
|
||||
padding: 0;
|
||||
|
||||
}
|
||||
.rtl .postbox {
|
||||
background: #fff none repeat scroll 100% 0;
|
||||
}
|
||||
#postbox-container-1 {
|
||||
font-size:11px;
|
||||
}
|
||||
.gravityflow-has-sidebar .postbox,
|
||||
.gravityflow-has-workflow-info .postbox,
|
||||
.gravityflow-has-step-info .postbox{
|
||||
border: 1px solid #e5e5e5;
|
||||
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
|
||||
}
|
||||
.postbox.gravityflow-instructions {
|
||||
padding:10px;
|
||||
font-size:inherit;
|
||||
}
|
||||
.gfield {
|
||||
margin-bottom:10px;
|
||||
}
|
||||
#post-body.columns-2 #post-body-content {
|
||||
float: left;
|
||||
width: 100%;
|
||||
}
|
||||
.rtl #post-body.columns-2 #post-body-content {
|
||||
float: right;
|
||||
}
|
||||
#poststuff #post-body.columns-2 {
|
||||
margin-right: 280px;
|
||||
}
|
||||
.rtl #poststuff #post-body.columns-2 {
|
||||
margin-left: 280px;
|
||||
}
|
||||
|
||||
#poststuff .postbox-container {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
#post-body-content, .edit-form-section {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
#post-body.columns-2 #postbox-container-1 {
|
||||
float: right;
|
||||
margin-right: -310px;
|
||||
width: 260px;
|
||||
}
|
||||
.rtl #post-body.columns-2 #postbox-container-1 {
|
||||
float: left;
|
||||
margin-left: -310px;
|
||||
}
|
||||
|
||||
#post-body.columns-2 #postbox-container-2 {
|
||||
float: left;
|
||||
}
|
||||
.rtl #post-body.columns-2 #postbox-container-2 {
|
||||
float: right;
|
||||
}
|
||||
|
||||
#postbox-container-2 .postbox {
|
||||
border: 0;
|
||||
}
|
||||
|
||||
.gravityflow_workflow_wrap{
|
||||
font-size:14px;
|
||||
}
|
||||
|
||||
.gravityflow_workflow_wrap .postbox h3,
|
||||
.gravityflow_workflow_wrap h3{
|
||||
font-size:1.2em;
|
||||
margin:10px;
|
||||
}
|
||||
|
||||
.gravityflow_workflow_wrap h4{
|
||||
margin:0;
|
||||
}
|
||||
|
||||
.gravityflow_workflow_wrap h4{
|
||||
font-size:1em;
|
||||
}
|
||||
|
||||
.gravityflow_workflow_wrap button,
|
||||
.gravityflow_workflow_wrap input,
|
||||
.gravityflow_workflow_wrap select {
|
||||
padding:4px;
|
||||
width: auto;
|
||||
}
|
||||
|
||||
.gravityflow_workflow_wrap hr {
|
||||
margin:10px;
|
||||
}
|
||||
|
||||
.gravityflow_workflow_wrap .postbox-container .button{
|
||||
background: #f7f7f7 none repeat scroll 0 0;
|
||||
border-color: #cccccc;
|
||||
box-shadow: 0 1px 0 #fff inset, 0 1px 0 rgba(0, 0, 0, 0.08);
|
||||
color: #555 !important;
|
||||
vertical-align: top;
|
||||
|
||||
border-radius: 3px;
|
||||
border-style: solid;
|
||||
border-width: 1px;
|
||||
box-sizing: border-box;
|
||||
cursor: pointer;
|
||||
display: inline-block;
|
||||
font-size: 11px;
|
||||
height: 28px;
|
||||
line-height: 26px;
|
||||
margin: 0;
|
||||
padding: 0 10px 1px;
|
||||
text-decoration: none;
|
||||
white-space: nowrap;
|
||||
}
|
||||
.rtl .gravityflow_workflow_wrap .postbox-container .button {
|
||||
background: #f7f7f7 none repeat scroll 100% 0;
|
||||
}
|
||||
|
||||
.postbox input[type=radio]{
|
||||
margin-right:5px;
|
||||
white-space: nowrap;
|
||||
}
|
||||
.rtl .postbox input[type=radio]{
|
||||
margin-left:5px;
|
||||
}
|
||||
#gravityflow-note{
|
||||
margin-top:5px;
|
||||
margin-bottom:5px;
|
||||
clear:both;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 880px) {
|
||||
#post-body-content{
|
||||
min-width:0;
|
||||
}
|
||||
#post-body.columns-2 #postbox-container-1 {
|
||||
margin-right: 0;
|
||||
width: 100%;
|
||||
}
|
||||
.rtl #post-body.columns-2 #postbox-container-1 {
|
||||
margin-left: 0;
|
||||
}
|
||||
#poststuff #post-body.columns-2 {
|
||||
margin-right: 0;
|
||||
}
|
||||
.rtl #poststuff #post-body.columns-2 {
|
||||
margin-left: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.detail-view-print{
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
|
||||
/* INBOX */
|
||||
|
||||
table#gravityflow-inbox thead tr {background: #FFF}
|
||||
table#gravityflow-inbox tr:nth-child(even) {background: #f9f9f9}
|
||||
table#gravityflow-inbox tr:nth-child(odd) {background: #FFF}
|
||||
|
||||
table#gravityflow-inbox {
|
||||
border-collapse:collapse;
|
||||
width:100%;
|
||||
}
|
||||
table#gravityflow-inbox th{
|
||||
display:table-cell;
|
||||
padding: 10px;
|
||||
border-right:0;
|
||||
}
|
||||
.rtl table#gravityflow-inbox th{
|
||||
border-left:0;
|
||||
}
|
||||
table#gravityflow-inbox td {
|
||||
padding: 0;
|
||||
border-right:0;
|
||||
}
|
||||
.rtl table#gravityflow-inbox td {
|
||||
border-left:0;
|
||||
}
|
||||
table#gravityflow-inbox td a {
|
||||
text-decoration:none!important;
|
||||
display:block;
|
||||
padding:10px;
|
||||
height:100%;
|
||||
border-bottom:none;
|
||||
}
|
||||
|
||||
.gravityflow-actions-locked{
|
||||
-webkit-transition: all 0.5s ease;
|
||||
-moz-transition: all 0.5s ease;
|
||||
-o-transition: all 0.5s ease;
|
||||
transition: all 0.5s ease;
|
||||
-webkit-filter: brightness(1.8) grayscale(1) opacity(.5);
|
||||
-moz-filter: brightness(1.8) grayscale(1) opacity(.5);
|
||||
filter: brightness(1.8) grayscale(1) opacity(.5);
|
||||
}
|
||||
|
||||
.gravityflow-action,
|
||||
.gravityflow-actions-unlock{
|
||||
cursor: pointer;
|
||||
margin-right: 5px;
|
||||
}
|
||||
.rtl .gravityflow-action,
|
||||
.rtl .gravityflow-actions-unlock{
|
||||
margin-left: 5px;
|
||||
}
|
||||
|
||||
.gravityflow-actions-lock{
|
||||
margin-right: 5px;
|
||||
}
|
||||
.rtl .gravityflow-actions-lock{
|
||||
margin-left: 5px;
|
||||
}
|
||||
|
||||
.gravityflow-actions{
|
||||
text-align: center;
|
||||
white-space: nowrap;
|
||||
padding: 10px;
|
||||
}
|
||||
.gravityflow-actions-unlock,
|
||||
.gravityflow-actions-spinner{
|
||||
display: none;
|
||||
}
|
||||
|
||||
.gravityflow-action-processed{
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.gravityflow-actions-note-field-container{
|
||||
position:absolute;
|
||||
z-index: 99;
|
||||
text-align: left;
|
||||
background-color: white;
|
||||
border:1px solid silver;
|
||||
padding: 5px;
|
||||
}
|
||||
.rtl .gravityflow-actions-note-field-container{
|
||||
text-align: right;
|
||||
}
|
||||
.gravityflow-actions-note-field-container textarea {
|
||||
width:200px;
|
||||
}
|
||||
|
||||
|
||||
#gravityflow-no-pending-tasks-container{
|
||||
|
||||
-webkit-transform-style: preserve-3d;
|
||||
-moz-transform-style: preserve-3d;
|
||||
transform-style: preserve-3d;
|
||||
|
||||
height:400px;
|
||||
text-align:center;
|
||||
}
|
||||
#gravityflow-no-pending-tasks-content{
|
||||
color: silver;
|
||||
font-size: 2em;
|
||||
position: relative;
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
}
|
||||
|
||||
.gravityflow-inbox-check{
|
||||
font-size: 5em;
|
||||
}
|
||||
|
||||
table.entry-products col.entry-products-col3,
|
||||
table.entry-products col.entry-products-col4{
|
||||
width:20%
|
||||
}
|
||||
|
||||
.wp-core-ui .notice.is-dismissible {
|
||||
padding-right: 38px;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.rtl .wp-core-ui .notice.is-dismissible {
|
||||
padding-left: 38px;
|
||||
}
|
||||
|
||||
.gravityflow_workflow_wrap div.updated,
|
||||
.gravityflow_workflow_wrap div.error {
|
||||
display: block;
|
||||
background: #fff;
|
||||
border-left: 4px solid #7ad03a;
|
||||
-webkit-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
|
||||
box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
|
||||
margin: 5px 15px 2px;
|
||||
padding: 1px 12px;
|
||||
}
|
||||
|
||||
.rtl .gravityflow_workflow_wrap div.updated,
|
||||
.rtl .gravityflow_workflow_wrap div.error {
|
||||
border-right: 4px solid #7ad03a;
|
||||
}
|
||||
|
||||
.gravityflow_workflow_wrap div.error {
|
||||
border-left-color: #dc3232;
|
||||
}
|
||||
.rtl .gravityflow_workflow_wrap div.error {
|
||||
border-right-color: #dc3232;
|
||||
}
|
||||
|
||||
.gravityflow_workflow_wrap div.updated p,
|
||||
.gravityflow_workflow_wrap div.error p {
|
||||
margin: 0.5em 0;
|
||||
padding: 2px;
|
||||
}
|
||||
|
||||
.wrap .notice, .wrap div.updated, .wrap div.error, .media-upload-form .notice, .media-upload-form div.error {
|
||||
margin: 5px 0 15px;
|
||||
}
|
||||
.wrap .notice, .wrap div.updated, .wrap div.error, .media-upload-form .notice, .media-upload-form div.error {
|
||||
margin: 5px 0 15px;
|
||||
}
|
||||
.notice-success, div.updated {
|
||||
border-color: #7ad03a;
|
||||
}
|
||||
|
||||
#gravityflow-admin-action{
|
||||
width:140px;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 700px) {
|
||||
|
||||
table#gravityflow-inbox {
|
||||
border: 0;
|
||||
width:100%;
|
||||
}
|
||||
|
||||
table#gravityflow-inbox thead {
|
||||
display: none;
|
||||
}
|
||||
|
||||
table#gravityflow-inbox tr {
|
||||
margin-bottom: 10px;
|
||||
display: block;
|
||||
border-bottom: 2px solid #ddd;
|
||||
}
|
||||
|
||||
table#gravityflow-inbox td {
|
||||
display: block!important;
|
||||
text-align: right;
|
||||
font-size: 13px;
|
||||
border-bottom: 1px dotted #ccc;
|
||||
border-left: 1px dotted #ccc;
|
||||
}
|
||||
|
||||
.rtl table#gravityflow-inbox td {
|
||||
text-align: left;
|
||||
border-right: 1px dotted #ccc;
|
||||
}
|
||||
|
||||
table#gravityflow-inbox td:last-child {
|
||||
border-bottom: 0;
|
||||
}
|
||||
|
||||
table#gravityflow-inbox td:before {
|
||||
content: attr(data-label);
|
||||
float: left;
|
||||
text-transform: uppercase;
|
||||
font-weight: bold;
|
||||
padding:5px;
|
||||
}
|
||||
|
||||
.rtl table#gravityflow-inbox td:before {
|
||||
float: right;
|
||||
}
|
||||
|
||||
#post-body {
|
||||
margin-right: 0;
|
||||
padding-right: 0;
|
||||
}
|
||||
|
||||
.rtl #post-body {
|
||||
margin-left: 0;
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
table#gravityflow-inbox th[data-label="ID"],
|
||||
table#gravityflow-inbox td[data-label="ID"] {
|
||||
width:100%!important;
|
||||
border-top:1px solid #ddd !important;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
div.gf_entry_wrap {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
table#gravityflow-inbox th[data-label="ID"],
|
||||
table#gravityflow-inbox td[data-label="ID"] {
|
||||
width:60px;
|
||||
}
|
||||
|
||||
table#gravityflow-inbox th{
|
||||
border-top:1px solid #ddd !important;
|
||||
}
|
||||
|
||||
|
||||
table#gravityflow-inbox{
|
||||
border-top:1px solid #ddd!important;
|
||||
}
|
||||
|
||||
table#gravityflow-inbox tbody tr{
|
||||
border-left-width: 3px;
|
||||
border-left-style: solid;
|
||||
border-left-color: transparent;
|
||||
}
|
||||
|
||||
.rtl table#gravityflow-inbox tbody tr{
|
||||
border-right-width: 3px;
|
||||
border-right-style: solid;
|
||||
border-right-color: transparent;
|
||||
}
|
||||
|
||||
#gravityflow-admin-action{
|
||||
padding: 2px;
|
||||
line-height: 28px;
|
||||
height: 28px;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
input.small-text{
|
||||
width: 50px;
|
||||
}
|
||||
|
||||
.tablenav-pages .current-page {
|
||||
padding-top: 0;
|
||||
text-align: center;
|
||||
width: 20px!important;
|
||||
}
|
||||
|
||||
/**** STATUS PAGE ****/
|
||||
|
||||
#gravityflow-status-filter .subsubsub li a,
|
||||
.pagination-links a{
|
||||
border-bottom: 0;
|
||||
}
|
||||
|
||||
#gravityflow-form-select{
|
||||
max-width: 200px;
|
||||
}
|
||||
|
||||
/* Bulk Actions */
|
||||
.tablenav-pages a {
|
||||
font-weight: 600;
|
||||
margin-right: 1px;
|
||||
padding: 0 2px;
|
||||
}
|
||||
|
||||
.rtl .tablenav-pages a {
|
||||
margin-left: 1px;
|
||||
}
|
||||
|
||||
.tablenav-pages .current-page {
|
||||
padding-top: 0;
|
||||
text-align: center;
|
||||
width: 20px;
|
||||
}
|
||||
|
||||
.tablenav-pages .next-page {
|
||||
margin-left: 2px;
|
||||
}
|
||||
|
||||
.rtl .tablenav-pages .next-page {
|
||||
margin-right: 2px;
|
||||
}
|
||||
|
||||
.tablenav a.button-secondary {
|
||||
display: block;
|
||||
margin: 3px 8px 0 0;
|
||||
}
|
||||
|
||||
.rtl .tablenav a.button-secondary {
|
||||
margin: 3px 0 0 8px;
|
||||
}
|
||||
|
||||
.tablenav {
|
||||
clear: both;
|
||||
height: 30px;
|
||||
margin: 6px 0 4px;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.tablenav.themes {
|
||||
max-width: 98%;
|
||||
}
|
||||
|
||||
.tablenav .tablenav-pages {
|
||||
float: right;
|
||||
display: block;
|
||||
cursor: default;
|
||||
height: 30px;
|
||||
color: #555;
|
||||
line-height: 30px;
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.rtl .tablenav .tablenav-pages {
|
||||
float: left;
|
||||
}
|
||||
|
||||
.tablenav-pages{
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.tablenav .no-pages,
|
||||
.tablenav .one-page .pagination-links {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.tablenav .tablenav-pages a,
|
||||
.tablenav-pages span.current {
|
||||
text-decoration: none;
|
||||
padding: 3px 6px;
|
||||
}
|
||||
|
||||
.tablenav .tablenav-pages a {
|
||||
padding: 0 10px 3px;
|
||||
background: #eee;
|
||||
background: rgba( 0, 0, 0, 0.05 );
|
||||
font-size: 16px;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
.tablenav .tablenav-pages a:hover,
|
||||
.tablenav .tablenav-pages a:focus {
|
||||
color: #fff;
|
||||
background: #00a0d2;
|
||||
}
|
||||
|
||||
.tablenav .tablenav-pages a.disabled,
|
||||
.tablenav .tablenav-pages a.disabled:hover,
|
||||
.tablenav .tablenav-pages a.disabled:focus,
|
||||
.tablenav .tablenav-pages a.disabled:active {
|
||||
color: #a0a5aa;
|
||||
background: #eee;
|
||||
background: rgba( 0, 0, 0, 0.05 );
|
||||
}
|
||||
|
||||
.tablenav .displaying-num {
|
||||
margin-right: 2px;
|
||||
color: #777;
|
||||
font-size: 12px;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.rtl .tablenav .displaying-num {
|
||||
margin-left: 2px;
|
||||
}
|
||||
|
||||
.tablenav .actions {
|
||||
overflow: hidden;
|
||||
padding: 2px 8px 0 0;
|
||||
}
|
||||
|
||||
.rtl .tablenav .actions {
|
||||
padding: 2px 0 0 8px;
|
||||
}
|
||||
|
||||
.wp-filter .actions {
|
||||
display: inline-block;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.tablenav .delete {
|
||||
margin-right: 20px;
|
||||
}
|
||||
|
||||
.rtl .tablenav .delete {
|
||||
margin-left: 20px;
|
||||
}
|
||||
|
||||
#gravityflow-status-filter .subsubsub {
|
||||
list-style: none;
|
||||
margin: 8px 0 0;
|
||||
padding: 0;
|
||||
font-size: 13px;
|
||||
float: left;
|
||||
color: #666;
|
||||
}
|
||||
|
||||
.rtl #gravityflow-status-filter .subsubsub {
|
||||
float: right;
|
||||
}
|
||||
|
||||
#gravityflow-status-filter .subsubsub a {
|
||||
line-height: 2;
|
||||
padding: .2em;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
#gravityflow-status-filter .subsubsub a .count,
|
||||
#gravityflow-status-filter .subsubsub a.current .count {
|
||||
color: #999;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
#gravityflow-status-filter .subsubsub a.current {
|
||||
font-weight: 600;
|
||||
border: none;
|
||||
}
|
||||
|
||||
#gravityflow-status-filter .subsubsub li {
|
||||
display: inline-block;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.button, .button-secondary {
|
||||
background: #f7f7f7 none repeat scroll 0 0;
|
||||
border-color: #cccccc;
|
||||
box-shadow: 0 1px 0 #fff inset, 0 1px 0 rgba(0, 0, 0, 0.08);
|
||||
color: #555;
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
|
||||
.button, .button-secondary {
|
||||
border-radius: 3px;
|
||||
border-style: solid;
|
||||
border-width: 1px;
|
||||
box-sizing: border-box;
|
||||
cursor: pointer;
|
||||
display: inline-block;
|
||||
font-size: 13px;
|
||||
margin: 0;
|
||||
padding: 0 10px 1px;
|
||||
text-decoration: none;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
input.medium-text.datepicker{
|
||||
width:90px!important;
|
||||
}
|
||||
|
||||
label.screen-reader-text{
|
||||
position: absolute;
|
||||
margin: -1px;
|
||||
padding: 0;
|
||||
height: 1px;
|
||||
width: 1px;
|
||||
overflow: hidden;
|
||||
clip: rect(0 0 0 0);
|
||||
border: 0;
|
||||
}
|
||||
|
||||
table.wp-list-table.entries {
|
||||
border-collapse:collapse;
|
||||
width:100%;
|
||||
}
|
||||
|
||||
table.wp-list-table.entries tr:nth-child(2n) {
|
||||
background: #f9f9f9 none repeat scroll 0 0;
|
||||
}
|
||||
|
||||
.rtl table.wp-list-table.entries tr:nth-child(2n) {
|
||||
background: #f9f9f9 none repeat scroll 100% 0;
|
||||
}
|
||||
|
||||
table.wp-list-table.entries td a,
|
||||
table.wp-list-table.entries td .gravityflow-empty {
|
||||
text-decoration:none!important;
|
||||
padding:10px;
|
||||
height:100%;
|
||||
border-bottom:none;
|
||||
}
|
||||
|
||||
table.wp-list-table.entries th,
|
||||
table.wp-list-table.entries td.column-cb {
|
||||
border-bottom:1px solid #ddd;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
table.wp-list-table.entries td.column-cb{
|
||||
border-top:0;
|
||||
}
|
||||
|
||||
table.wp-list-table.entries th[data-label="ID"],
|
||||
table.wp-list-table.entries td[data-label="ID"] {
|
||||
width:70px;
|
||||
/*border-left:1px solid #ddd;*/
|
||||
}
|
||||
|
||||
.check-column{
|
||||
width:30px;
|
||||
}
|
||||
|
||||
|
||||
@media screen and (max-width: 700px) {
|
||||
#post-body {
|
||||
clear: left;
|
||||
float: right;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.rtl #post-body {
|
||||
clear: right;
|
||||
float: left;
|
||||
}
|
||||
|
||||
table.wp-list-table.entries {
|
||||
border: 0;
|
||||
width:100%;
|
||||
}
|
||||
|
||||
table.wp-list-table.entries thead,
|
||||
table.wp-list-table.entries tfoot{
|
||||
display: none;
|
||||
}
|
||||
|
||||
table.wp-list-table.entries tr {
|
||||
margin-bottom: 10px;
|
||||
display: block;
|
||||
border-bottom: 2px solid #ddd;
|
||||
}
|
||||
|
||||
table.wp-list-table.entries th,
|
||||
table.wp-list-table.entries td {
|
||||
display: block!important;
|
||||
text-align: right;
|
||||
font-size: 13px;
|
||||
border-bottom: 1px dotted #ccc;
|
||||
border-left: 1px dotted #ccc;
|
||||
border-right: 1px dotted #ccc;
|
||||
}
|
||||
|
||||
.rtl table.wp-list-table.entries th,
|
||||
.rtl table.wp-list-table.entries td {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
table.wp-list-table.entries td:last-child {
|
||||
border-bottom: 0;
|
||||
}
|
||||
|
||||
table.wp-list-table.entries th:before,
|
||||
table.wp-list-table.entries td:before {
|
||||
content: attr(data-label);
|
||||
float: left;
|
||||
text-transform: uppercase;
|
||||
font-weight: bold;
|
||||
padding:5px;
|
||||
}
|
||||
|
||||
.has-right-sidebar #post-body {
|
||||
margin-right: 0;
|
||||
padding-right: 0;
|
||||
}
|
||||
|
||||
.rtl .has-right-sidebar #post-body {
|
||||
margin-left: 0;
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
table.wp-list-table.entries th,
|
||||
table.wp-list-table.entries td[data-label="ID"] {
|
||||
width:100%!important;
|
||||
}
|
||||
|
||||
table.wp-list-table.entries th{
|
||||
border-top:1px solid #ddd !important;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.gform-field-filter select,
|
||||
.gform-field-filter input{
|
||||
padding:4px;
|
||||
vertical-align: top;
|
||||
height: inherit;
|
||||
}
|
||||
|
||||
.gform-field-filter input{
|
||||
width: 150px;
|
||||
}
|
||||
|
||||
.gravityflow-no-sidebar #minor-publishing{
|
||||
padding:10px;
|
||||
}
|
||||
|
||||
|
||||
#minor-publishing ul{
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
#minor-publishing ul li{
|
||||
list-style-type: none;
|
||||
margin: 0 0 10px 0;
|
||||
}
|
||||
#minor-publishing h4 {
|
||||
margin-bottom:10px;
|
||||
}
|
||||
|
||||
.gravityflow-note-avatar span > i {
|
||||
width:65px;
|
||||
height:65px;
|
||||
display:inline-block;
|
||||
font-size:2.5em;
|
||||
margin:5px;
|
||||
color:#0074a2;
|
||||
}
|
||||
|
||||
div.gravityflow_validation_error {
|
||||
border-bottom: 2px solid #790000;
|
||||
border-top: 2px solid #790000;
|
||||
clear: both;
|
||||
color: #790000;
|
||||
font-size: 1.2em;
|
||||
font-weight: bold;
|
||||
margin-bottom: 1.6em;
|
||||
padding: 1em 0;
|
||||
width: 97.5%;
|
||||
}
|
||||
@@ -0,0 +1,132 @@
|
||||
|
||||
table#gravityflow-inbox thead tr {
|
||||
background: #FFF
|
||||
}
|
||||
|
||||
table#gravityflow-inbox tr:nth-child(even) {
|
||||
background: #f9f9f9
|
||||
}
|
||||
|
||||
table#gravityflow-inbox tr:nth-child(odd) {
|
||||
background: #FFF
|
||||
}
|
||||
|
||||
table#gravityflow-inbox tbody tr{
|
||||
border-left-width: 5px;
|
||||
border-left-style: solid;
|
||||
border-left-color: transparent;
|
||||
}
|
||||
|
||||
.rtl table#gravityflow-inbox tbody tr{
|
||||
border-right-width: 5px;
|
||||
border-right-style: solid;
|
||||
border-right-color: transparent;
|
||||
}
|
||||
|
||||
table#gravityflow-inbox {
|
||||
border-collapse: collapse;
|
||||
margin-top:10px;
|
||||
}
|
||||
|
||||
table#workflow-inbox tr:hover {
|
||||
background-color: #808080;
|
||||
}
|
||||
|
||||
table#gravityflow-inbox td {
|
||||
display: table-cell;
|
||||
padding: 0px;
|
||||
}
|
||||
|
||||
table#gravityflow-inbox td a {
|
||||
text-decoration: none;
|
||||
display: block;
|
||||
padding: 10px;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
#gravityflow-no-pending-tasks-container {
|
||||
|
||||
-webkit-transform-style: preserve-3d;
|
||||
-moz-transform-style: preserve-3d;
|
||||
transform-style: preserve-3d;
|
||||
|
||||
height: 400px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#gravityflow-no-pending-tasks-content {
|
||||
color: silver;
|
||||
font-size: 2em;
|
||||
position: relative;
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
}
|
||||
|
||||
i.gravityflow-inbox-check {
|
||||
font-size: 5em;
|
||||
}
|
||||
|
||||
table#gravityflow-inbox th[data-label="ID"],
|
||||
table#gravityflow-inbox td[data-label="ID"] {
|
||||
width: 30px !important;
|
||||
}
|
||||
|
||||
.gravityflow-actions-locked{
|
||||
-webkit-transition: all 0.5s ease;
|
||||
-moz-transition: all 0.5s ease;
|
||||
-o-transition: all 0.5s ease;
|
||||
transition: all 0.5s ease;
|
||||
-webkit-filter: brightness(1.8) grayscale(1) opacity(.5);
|
||||
-moz-filter: brightness(1.8) grayscale(1) opacity(.5);
|
||||
filter: brightness(1.8) grayscale(1) opacity(.5);
|
||||
}
|
||||
|
||||
.gravityflow-action,
|
||||
.gravityflow-actions-unlock{
|
||||
cursor: pointer;
|
||||
margin-right: 5px;
|
||||
}
|
||||
|
||||
.rtl .gravityflow-action,
|
||||
.rtl .gravityflow-actions-unlock{
|
||||
margin-left: 5px;
|
||||
}
|
||||
|
||||
.gravityflow-actions-lock{
|
||||
margin-right: 5px;
|
||||
}
|
||||
|
||||
.rtl .gravityflow-actions-lock{
|
||||
margin-left: 5px;
|
||||
}
|
||||
|
||||
.gravityflow-actions{
|
||||
text-align: center;
|
||||
white-space: nowrap;
|
||||
padding: 10px;
|
||||
}
|
||||
.gravityflow-actions-unlock,
|
||||
.gravityflow-actions-spinner{
|
||||
display: none;
|
||||
}
|
||||
|
||||
.gravityflow-action-processed{
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.gravityflow-actions-note-field-container{
|
||||
position:absolute;
|
||||
z-index: 99;
|
||||
text-align: left;
|
||||
background-color: white;
|
||||
border:1px solid silver;
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
.rtl .gravityflow-actions-note-field-container{
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.gravityflow-actions-note-field-container textarea {
|
||||
width:200px;
|
||||
}
|
||||
@@ -0,0 +1,2 @@
|
||||
<?php
|
||||
//Nothing to see here
|
||||
125
backend/wordpress/wp-content/plugins/gravityflow-master/css/multi-select.css
Executable file
125
backend/wordpress/wp-content/plugins/gravityflow-master/css/multi-select.css
Executable file
@@ -0,0 +1,125 @@
|
||||
.ms-container{
|
||||
background: transparent url('../images/switch.png') no-repeat 50% 50%;
|
||||
width: 370px;
|
||||
}
|
||||
|
||||
.ms-container:after{
|
||||
content: ".";
|
||||
display: block;
|
||||
height: 0;
|
||||
line-height: 0;
|
||||
font-size: 0;
|
||||
clear: both;
|
||||
min-height: 0;
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
.ms-container .ms-selectable, .ms-container .ms-selection{
|
||||
color: #555555;
|
||||
float: left;
|
||||
width: 45%;
|
||||
}
|
||||
|
||||
.rtl .ms-container .ms-selectable, .ms-container .ms-selection{
|
||||
float: right;
|
||||
}
|
||||
|
||||
.ms-container .ms-selection{
|
||||
float: right;
|
||||
}
|
||||
|
||||
.rtl .ms-container .ms-selection{
|
||||
float: left;
|
||||
}
|
||||
|
||||
.ms-container .ms-list{
|
||||
background: #fff;
|
||||
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
||||
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
||||
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
||||
-webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
|
||||
-moz-transition: border linear 0.2s, box-shadow linear 0.2s;
|
||||
-ms-transition: border linear 0.2s, box-shadow linear 0.2s;
|
||||
-o-transition: border linear 0.2s, box-shadow linear 0.2s;
|
||||
transition: border linear 0.2s, box-shadow linear 0.2s;
|
||||
border: 1px solid #ccc;
|
||||
-webkit-border-radius: 3px;
|
||||
-moz-border-radius: 3px;
|
||||
border-radius: 3px;
|
||||
position: relative;
|
||||
height: 200px;
|
||||
padding: 0;
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
.ms-container .ms-list.ms-focus{
|
||||
border-color: rgba(82, 168, 236, 0.8);
|
||||
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
|
||||
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
|
||||
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
|
||||
outline: 0;
|
||||
outline: thin dotted \9;
|
||||
}
|
||||
|
||||
.ms-container ul{
|
||||
margin: 0;
|
||||
list-style-type: none;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.ms-container .ms-optgroup-container{
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.ms-container .ms-optgroup-label{
|
||||
margin: 0;
|
||||
padding: 5px 0px 0px 5px;
|
||||
cursor: pointer;
|
||||
color: #999;
|
||||
}
|
||||
|
||||
.rtl .ms-container .ms-optgroup-label{
|
||||
padding: 5px 5px 0px 0px;
|
||||
}
|
||||
|
||||
.ms-container .ms-selectable li.ms-elem-selectable,
|
||||
.ms-container .ms-selection li.ms-elem-selection{
|
||||
border-bottom: 1px #eee solid;
|
||||
padding: 2px 10px;
|
||||
color: #555;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.ms-container .ms-selectable li.ms-hover,
|
||||
.ms-container .ms-selection li.ms-hover{
|
||||
cursor: pointer;
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
background-color: #08c;
|
||||
}
|
||||
|
||||
.ms-container .ms-selectable li.disabled,
|
||||
.ms-container .ms-selection li.disabled{
|
||||
background-color: #eee;
|
||||
color: #aaa;
|
||||
cursor: text;
|
||||
}
|
||||
|
||||
.ms-container .search-input {
|
||||
width: 100%;
|
||||
margin-bottom: 10px;
|
||||
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
||||
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
||||
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
||||
-webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
|
||||
-moz-transition: border linear 0.2s, box-shadow linear 0.2s;
|
||||
-ms-transition: border linear 0.2s, box-shadow linear 0.2s;
|
||||
-o-transition: border linear 0.2s, box-shadow linear 0.2s;
|
||||
transition: border linear 0.2s, box-shadow linear 0.2s;
|
||||
border: 1px solid #ccc;
|
||||
-webkit-border-radius: 3px;
|
||||
-moz-border-radius: 3px;
|
||||
border-radius: 3px;
|
||||
padding: 3px 5px;
|
||||
display: none;
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
table.gravityflow-settings-labels th {
|
||||
min-width:100px;
|
||||
text-align:left;
|
||||
}
|
||||
|
||||
.rtl table.gravityflow-settings-labels th {
|
||||
text-align:right;
|
||||
}
|
||||
|
||||
.oauth-not-verified, .oauth-failed, p.error {
|
||||
color:red;
|
||||
font-weight:bold;
|
||||
}
|
||||
|
||||
.oauth-verified, .oauth-success {
|
||||
color:green;
|
||||
font-weight:bold;
|
||||
}
|
||||
@@ -0,0 +1,43 @@
|
||||
.wrap {
|
||||
position: static !important;
|
||||
}
|
||||
|
||||
.column-id{
|
||||
width:70px;
|
||||
white-space:nowrap;
|
||||
}
|
||||
|
||||
#gravityflow-status-filters{
|
||||
clear: both;
|
||||
background: #f5f5f5;
|
||||
background-image: -webkit-gradient(linear,left bottom,left top,from(#f5f5f5),to(#fafafa));
|
||||
background-image: -webkit-linear-gradient(bottom,#f5f5f5,#fafafa);
|
||||
background-image: -moz-linear-gradient(bottom,#f5f5f5,#fafafa);
|
||||
background-image: -o-linear-gradient(bottom,#f5f5f5,#fafafa);
|
||||
background-image: linear-gradient(to top,#f5f5f5,#fafafa);
|
||||
border-color: #dfdfdf;
|
||||
overflow: auto;
|
||||
margin: 8px 0;
|
||||
padding: 12px;
|
||||
border-width: 1px;
|
||||
border-style: solid;
|
||||
border-radius: 3px;
|
||||
font-size: 13px;
|
||||
line-height: 2.1em;
|
||||
}
|
||||
.rtl #gravityflow-status-filters{
|
||||
background-image: -webkit-gradient(linear,right bottom,right top,from(#f5f5f5),to(#fafafa));
|
||||
}
|
||||
#entry-id{
|
||||
padding:3px;
|
||||
}
|
||||
#gravityflow-form-select,
|
||||
#entry-id,
|
||||
#gravityflow-status-date-filters,
|
||||
#entry_filters{
|
||||
vertical-align: top;
|
||||
}
|
||||
.gravityflow-export-status-button{
|
||||
margin-top:20px;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,28 @@
|
||||
#gravityflow-initiate-list li{
|
||||
|
||||
border: 4px solid #fff;
|
||||
}
|
||||
|
||||
|
||||
#gravityflow-initiate-list li a {
|
||||
|
||||
text-decoration: none;
|
||||
|
||||
}
|
||||
|
||||
#gravityflow-initiate-list li a .panel{
|
||||
|
||||
padding:20px;
|
||||
|
||||
|
||||
}
|
||||
.gravityflow-initiate-form-title{
|
||||
font-size: 1.6em;
|
||||
|
||||
}
|
||||
|
||||
.gravityflow-initiate-form-description{
|
||||
font-size: 1.2em;
|
||||
margin-top:10px;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user