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

Issue/71 - Experiment: Gutenberg styling #72

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
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
92 changes: 92 additions & 0 deletions wp-user-profiles/assets/css/ltr/user-profiles.css
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,98 @@
margin: 20px 0 0 0;
}

#wp-user-profiles-page #profile-subnav {
margin-bottom: -1px;
}

.wp-user-profiles-nav-wrapper {
margin: 20px -20px -1px -22px;
background: #fff;
border-top: 1px solid #e0e0e0;
}

.wp-user-profiles-nav-wrapper .nav-tab-wrapper {
padding: 16px 0 16px 0;
}

.wp-user-profiles-nav-wrapper .nav-tab-wrapper a {
border: none;
border-radius: 2px;
background: none;
font-size: 13px;
font-weight: 500;
}

.wp-user-profiles-nav-wrapper .nav-tab-wrapper a.nav-tab-active {
color: #fff;
background: #1e1e1e;
}

#wp-user-profiles-page #poststuff {
float: left;
width: calc(100% + 40px);
height: 100%;
margin: 0 -22px 0 -22px;
padding: 0;
background: #fff;
}

#wp-user-profiles-page #poststuff #post-body.columns-2 {
margin-right: 280px;
}

#wp-user-profiles-page #post-body.columns-2 #postbox-container-1 {
margin-right: -281px;
border-left: 1px solid #e0e0e0;
}

#wp-user-profiles-page div.postbox {
margin-bottom: -1px;
font-size: 13px;
border-color: #e0e0e0;
border-left: none;
border-right: none;
}

#wp-user-profiles-page div.postbox h2 {
padding: 16px 48px 16px 16px;
font-weight: 500;
font-size: 13px;
}

#wp-user-profiles-page div.postbox .postbox-header {
border-color: #e0e0e0;
}

#wp-user-profiles-page div.postbox .postbox-header:hover {
background-color: #f0f0f0;
}

#wp-user-profiles-page div.postbox:not(.closed) .postbox-header {
border: none;
}

#wp-user-profiles-page div.postbox div.inside,
#wp-user-profiles-page div.submitbox div.misc-pub-section {
margin: 0;
padding: 0 16px 16px 16px;
}

#wp-user-profiles-page div.postbox .form-table {
margin: 0;
}

#wp-user-profiles-page div.postbox .form-table th {
padding: 16px 10px 16px 0;
font-size: 13px;
font-weight: 400;
}

#wp-user-profiles-page div.postbox .form-table label {
font-size: 13px;
font-weight: 400;
}

/* Secondary Nav
-------------------------------------------------------------- */

Expand Down