tripal_views_admin_views.css 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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.extra-short-column, th.views-field.extra-short-column {
  59. width: 25px;
  60. word-wrap: break-word;
  61. }
  62. td.views-field.short-column, th.views-field.short-column {
  63. width: 75px;
  64. word-wrap: break-word;
  65. }
  66. td.views-field.wide-column, th.views-field.wide-column {
  67. width: 45%;
  68. word-wrap: break-word;
  69. }