You are here

webform_ajax_page.css in Webform Ajax Page 6

Same filename and directory in other branches
  1. 7 webform_ajax_page.css
.ui-tabs{
  zoom: 1;
}

.ui-tabs .ui-tabs-nav{
  list-style: none;
  list-style-type: none;
  list-style-image: none;
  position: relative;
  overflow: hidden;
  top: 1px;
  z-index: 1000;
  margin: 0;
}

.ui-tabs .ui-tabs-nav li {
  position: relative;
  float: left;
  border: 1px solid #ccc;
  border-bottom-width: 0 !important;
  margin: 0 2px -1px 0;
  background: #ccc;
  padding: 0 5px;
  line-height: 2.3em;
}

.ui-tabs .ui-tabs-nav li a{
  /*float: left; Uncomment to show tabs */
  display:none;/* Comment to show tabs */
}

.ui-tabs .ui-tabs-nav li.ui-tabs-selected{
  padding-bottom: 1px;
  border-bottom-width: 0;
  background: white;
}

.ui-tabs .ui-tabs-nav li.ui-tabs-selected a,
.ui-tabs .ui-tabs-nav li.ui-state-disabled a,
.ui-tabs .ui-tabs-navli.ui-state-processing a{ 
  cursor: text;
}

.ui-tabs .ui-tabs-nav li a,
.ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a  {
  cursor: pointer;
} /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */

.ui-tabs .ui-tabs-panel{ 
  padding: 20px;
  display: block;
  border-width: 0;
  background: none;
  border: 1px solid #ccc;
  position: relative;
  min-height: 200px;
}

.ui-tabs .ui-tabs-hide{ 
  display: none !important;
}

.webform-ajax-page-nav{
  margin-top: 30px;
}

.webform-ajax-page-nav #edit-actions input{
  position:absolute;
  bottom: 6px;
  right: 12px;
  margin: 0;
  
}

.webform-ajax-page-nav #edit-actions #edit-draft{
  position:absolute;
  bottom: 6px;
  right: 110px;
  margin: 0;

}

a.mover{
  background: #ccc;
  padding: 6px 12px;
  margin-top: 20px;
  position: absolute;
  color: white;
  font-weight: bold;
  text-decoration: none;
}

.next-tab{
  bottom: 0;
  right: 0;
  -moz-border-radius-topleft: 10px;
  -webkit-border-top-left-radius: 10px;
}

.prev-tab{
  bottom: 0;
  left: 0;
  -moz-border-radius-topright: 10px;
  -webkit-border-top-right-radius: 10px;
}

File

webform_ajax_page.css
View source
  1. .ui-tabs{
  2. zoom: 1;
  3. }
  4. .ui-tabs .ui-tabs-nav{
  5. list-style: none;
  6. list-style-type: none;
  7. list-style-image: none;
  8. position: relative;
  9. overflow: hidden;
  10. top: 1px;
  11. z-index: 1000;
  12. margin: 0;
  13. }
  14. .ui-tabs .ui-tabs-nav li {
  15. position: relative;
  16. float: left;
  17. border: 1px solid #ccc;
  18. border-bottom-width: 0 !important;
  19. margin: 0 2px -1px 0;
  20. background: #ccc;
  21. padding: 0 5px;
  22. line-height: 2.3em;
  23. }
  24. .ui-tabs .ui-tabs-nav li a{
  25. /*float: left; Uncomment to show tabs */
  26. display:none;/* Comment to show tabs */
  27. }
  28. .ui-tabs .ui-tabs-nav li.ui-tabs-selected{
  29. padding-bottom: 1px;
  30. border-bottom-width: 0;
  31. background: white;
  32. }
  33. .ui-tabs .ui-tabs-nav li.ui-tabs-selected a,
  34. .ui-tabs .ui-tabs-nav li.ui-state-disabled a,
  35. .ui-tabs .ui-tabs-navli.ui-state-processing a{
  36. cursor: text;
  37. }
  38. .ui-tabs .ui-tabs-nav li a,
  39. .ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a {
  40. cursor: pointer;
  41. } /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */
  42. .ui-tabs .ui-tabs-panel{
  43. padding: 20px;
  44. display: block;
  45. border-width: 0;
  46. background: none;
  47. border: 1px solid #ccc;
  48. position: relative;
  49. min-height: 200px;
  50. }
  51. .ui-tabs .ui-tabs-hide{
  52. display: none !important;
  53. }
  54. .webform-ajax-page-nav{
  55. margin-top: 30px;
  56. }
  57. .webform-ajax-page-nav #edit-actions input{
  58. position:absolute;
  59. bottom: 6px;
  60. right: 12px;
  61. margin: 0;
  62. }
  63. .webform-ajax-page-nav #edit-actions #edit-draft{
  64. position:absolute;
  65. bottom: 6px;
  66. right: 110px;
  67. margin: 0;
  68. }
  69. a.mover{
  70. background: #ccc;
  71. padding: 6px 12px;
  72. margin-top: 20px;
  73. position: absolute;
  74. color: white;
  75. font-weight: bold;
  76. text-decoration: none;
  77. }
  78. .next-tab{
  79. bottom: 0;
  80. right: 0;
  81. -moz-border-radius-topleft: 10px;
  82. -webkit-border-top-left-radius: 10px;
  83. }
  84. .prev-tab{
  85. bottom: 0;
  86. left: 0;
  87. -moz-border-radius-topright: 10px;
  88. -webkit-border-top-right-radius: 10px;
  89. }