A fork of Ryan Summer's WordPress plugin Obvious Post States (https://github.com/ryansommers/obvious-post-states)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
635 B

10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
  1. .post-state {
  2. background: #999999;
  3. border-radius: 10px;
  4. color: #ffffff;
  5. display: inline-block;
  6. font-size: 12px;
  7. font-weight: normal;
  8. margin: -1px 10px 5px 10px;
  9. padding: 1px 5px;
  10. vertical-align: top;
  11. float: right;
  12. width: 120px;
  13. text-align: center;
  14. }
  15. .status-future .post-state {
  16. background: #2a8991;
  17. }
  18. .status-private .post-state {
  19. background: #667;
  20. }
  21. .post-password-required .post-state {
  22. background: #912a46;
  23. }
  24. .status-draft .post-state {
  25. background: #999;
  26. }
  27. .status-sticky .post-state {
  28. background: #2a3491;
  29. }
  30. .row-actions {
  31. padding: 4px 0 0 0;
  32. }
  33. td.post-title strong,
  34. td.page-title strong {
  35. display: inline;
  36. }