tripal_views_admin_views.css 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. /**
  2. * @file
  3. * CSS rules to theme tripal admin listings
  4. */
  5. /**
  6. * Exposed Form Theme-ing
  7. */
  8. .views-exposed-form {
  9. border: 1px solid #ccc;
  10. padding: 15px;
  11. margin-bottom: 15px;
  12. position: relative;
  13. }
  14. .views-exposed-form .views-exposed-widget {
  15. float: none;
  16. display: block;
  17. width: 540px;
  18. }
  19. .views-exposed-widget .views-widget {
  20. display: inline-block;
  21. }
  22. .views-exposed-widget .views-widget .form-item {
  23. padding-top: 0px;
  24. padding-bottom: 0px;
  25. margin-top: 0px;
  26. margin-bottom: 0px;
  27. }
  28. .views-exposed-widget .views-widget input[type="text"] {
  29. width: 250px;
  30. }
  31. .views-exposed-widget .views-widget select {
  32. width: 255px;
  33. }
  34. .views-exposed-widget label {
  35. display: inline-block;
  36. width: 15em;
  37. font-weight: normal;
  38. }
  39. .views-exposed-widget label :after {
  40. content: ":";
  41. }
  42. .views-exposed-form .views-submit-button {
  43. position:absolute;
  44. left:550px;
  45. top: 0px;
  46. }
  47. /**
  48. * Table Theme-ing
  49. */
  50. table.views-table {
  51. table-layout: fixed;
  52. width: 100%
  53. }
  54. th.views-field {
  55. max-width: 33%;
  56. word-wrap: break-word;
  57. }
  58. td.views-field.short-column, th.views-field.short-column {
  59. width: 75px;
  60. word-wrap: break-word;
  61. }
  62. td.views-field.wide-column, th.views-field.wide-column {
  63. width: 45%;
  64. word-wrap: break-word;
  65. }