Skip to content
Open
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
10 changes: 10 additions & 0 deletions src/wp-admin/css/common.css
Original file line number Diff line number Diff line change
Expand Up @@ -4284,6 +4284,16 @@ img {
margin-bottom: 20px; /* Add margins beneath links for better spacing between boxes and elements */
}

#screen-meta-links .show-settings {
box-sizing: border-box;
min-height: 40px;
line-height: 2.71428571;
}

#screen-meta-links .show-settings:after {
font: normal 20px/1.9 dashicons;
}

.wp-filter .search-form input[type="search"] {
font-size: 1rem;
}
Expand Down
42 changes: 42 additions & 0 deletions src/wp-admin/css/forms.css
Original file line number Diff line number Diff line change
Expand Up @@ -1751,6 +1751,42 @@ table.form-table td .updated p {
display: block;
}

.wp-core-ui .tablenav input[type="text"],
.wp-core-ui .tablenav input[type="password"],
.wp-core-ui .tablenav input[type="date"],
.wp-core-ui .tablenav input[type="datetime"],
.wp-core-ui .tablenav input[type="datetime-local"],
.wp-core-ui .tablenav input[type="email"],
.wp-core-ui .tablenav input[type="month"],
.wp-core-ui .tablenav input[type="number"],
.wp-core-ui .tablenav input[type="search"],
.wp-core-ui .tablenav input[type="tel"],
.wp-core-ui .tablenav input[type="time"],
.wp-core-ui .tablenav input[type="url"],
.wp-core-ui .tablenav input[type="week"],
.wp-core-ui .tablenav select {
min-height: 40px;
}

.wp-core-ui .tablenav select {
line-height: 2.375;
font-size: 16px;
}

#doaction,
#doaction2,
#post-query-submit {
min-height: 40px;
line-height: 2.71428571;
padding: 0 14px;
}

.wp-core-ui .tablenav .button {
min-height: 40px;
line-height: 2.71428571;
padding: 0 14px;
}

p.search-box {
float: none;
width: 100%;
Expand All @@ -1769,6 +1805,12 @@ table.form-table td .updated p {
margin-bottom: 0;
}

p.search-box .button {
min-height: 40px;
line-height: 2.71428571; /* 38px - matches default mobile button */
padding: 0 14px;
}

p.search-box input[type="submit"] {
margin-bottom: 10px;
}
Expand Down
9 changes: 5 additions & 4 deletions src/wp-admin/css/list-tables.css
Original file line number Diff line number Diff line change
Expand Up @@ -1956,15 +1956,16 @@ div.action-links,

.tablenav .tablenav-pages .button,
.tablenav .tablenav-pages .tablenav-pages-navspan {
min-width: 44px;
padding: 12px 8px;
min-width: 40px;
min-height: 40px;
padding: 10px 8px;
font-size: 18px;
line-height: 1;
}

.tablenav-pages .pagination-links .current-page {
min-width: 44px;
padding: 12px 6px;
min-width: 40px;
padding: 10px 6px;
font-size: 16px;
line-height: 1.125;
}
Expand Down
Loading