Making WordPress.org

Changeset 4435


Ignore:
Timestamp:
11/28/2016 01:52:46 AM (9 years ago)
Author:
mapk
Message:

Notification classes: Notification styling added to wp4.css

I've added some notification styling to wp4.css since .org doesn't seem to have any notification styles already.

See #2267

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/style/wp4.css

    r4247 r4435  
    22132213    }
    22142214}
     2215
     2216
     2217/*
     2218 *  Notifications
     2219 */
     2220
     2221 .notification {
     2222    background: #eee;
     2223    margin: 0;
     2224    max-width: 100%;
     2225    padding: 8px 12px;
     2226    text-align: center;
     2227}
     2228
     2229.notification-info {
     2230    background: #d9edf7;
     2231}
     2232
     2233.notification-success {
     2234    background: #c7e8ca;
     2235}
     2236
     2237.notification-warning {
     2238    background: #fff8e5;
     2239}
     2240
     2241.notification-danger {
     2242    background: #f2dede;
     2243}
Note: See TracChangeset for help on using the changeset viewer.