Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

css 0 unitless #3748 #3887

Merged
merged 7 commits into from
Jan 6, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions components/Templates/assets/css/panel.css
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@ h3.pods_templates-config-header{
width: 50%;
}
.widget-content .addValue{
padding: 0px;
padding: 0;
}

#medialibrary .fbutton{
Expand Down Expand Up @@ -444,13 +444,13 @@ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', end
text-align: center;
width: 115px;
border-radius: 5px;
box-shadow: inset 0px 0px 5px rgba(0,0,0,0.5);
box-shadow: inset 0 0 5px rgba(0,0,0,0.5);
}
.mediaElement img{
margin:9px;
}
.mediaElement:hover{
box-shadow: inset 0px 0px 5px #46A600;
box-shadow: inset 0 0 5px #46A600;
}

.widget-table{
Expand Down
4 changes: 2 additions & 2 deletions ui/css/jquery.pods.attach.css
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ ul.pods-files-queue li.pods-file li.pods-progress {
border: 1px solid #E7E7E7;
}
ul.pods-files-queue li.pods-file li.pods-progress div.progress-bar {
width: 0px;
width: 0;
height: 14px;
background-color: #4D4D4D;
}
Expand Down Expand Up @@ -179,4 +179,4 @@ span.pods-quick-add {
div.open a.pods-quick-add,
div.open span.pods-quick-add {
display: none;
}
}
2 changes: 1 addition & 1 deletion ui/css/pods-admin.css
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
.pods-wizard h2,
.pods-wizard h3 {
font-family: Georgia !important;
margin-bottom: 0px !important;
margin-bottom: 0 !important;
}

.pods-admin #poststuff h3 {
Expand Down
8 changes: 4 additions & 4 deletions ui/css/pods-advanced.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
.right { float: right; }
.clear { clear: both; }
.dialogWithDropShadow {
-webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
-moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
-moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
#pods-parts-right {
width: 250px;
Expand Down Expand Up @@ -89,4 +89,4 @@
#pods-parts-filter select { width: 115px; }
#pods-parts-filter .button-secondary { width: 60px; margin-left: 5px; }
.pods-parts-pagination .current-page { width: 40px!important; margin: 0 2px; }
.pods-parts-pagination a { margin: 0 2px; }
.pods-parts-pagination a { margin: 0 2px; }
8 changes: 4 additions & 4 deletions ui/css/pods-wizard.css
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@
margin-top: 0;
}
#pods-wizard-box #pods-wizard-main .stuffbox {
margin: 15px 15px 0px 15px;
margin: 15px 15px 0 15px;
}
#pods-wizard-box #pods-wizard-main .stuffbox h3 {
font-size: 15px;
Expand Down Expand Up @@ -358,9 +358,9 @@
border-top-right-radius: 8px;
border-bottom-right-radius: 8px;
border-bottom-left-radius: 8px;
-webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.3);
-moz-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.3);
box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.3);
-webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
-moz-box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
}
#pods-wizard-box #pods-wizard-main .pods-wizard-panel #pods-wizard-options .pods-wizard-option a h2 {
color: #21759B;
Expand Down