You are here

img_assist.css in Image Assist 5

/**
 * IMG ASSIST WINDOW
 */ 
body.img_assist {
  margin: 0px;
  padding: 5px;
  width: auto;
  min-width: 0;
  color: #000000;
  font-family: Arial, Helvetica, sans-serif;
  font-size: .8em;
  background-color: #efefef;
}
/* Thin line between the header frame and the main frame */
body#img_assist_thumbs, body#img_assist_upload, body#img_assist_properties {
  border-top: 1px solid #000;
}
/* Darker background color in the header frame */
body#img_assist_header {
  background-color:#ccc;
  margin: 0;
}
/* Thin border around images */
.img_assist img  {
  border: 1px solid #000;
}
.img_assist-button {
  font-weight: bold;
  margin: 3px;
}
.img_assist img {
  display: inline; /* pushbutton theme changes the display to block */
}
.img_assist .messages {
  border: 1px solid #000;
  background-color: #ccc;
  padding: 2px;
  margin: 3px 0px 6px 0px;
}

/* Upload Window */
.img_assist .node-form {
  width: 95%;
}

/* Properties Window */
.img_assist #preview {
  padding: 5px 10px 5px 5px;
}
.img_assist .form-item { /* the first form field on the properties frame should be at the top of the page  */
  margin-top: 0px;
  margin-bottom: 1em;
}
.img_assist #caption {
  display: block;
}
.img_assist #header-browse div.form-item,
.img_assist #link-group div.form-item,
.img_assist #edit-size div.form-item,
.img_assist #size-other div.form-item {
  display: inline;
}
.img_assist #alignment {
  text-align: left;
}
.img_assist #edit-title, .img_assist #edit-desc {
  width: 99%;
}
.img_assist #edit-link {
  width: 155px;
}
.img_assist #edit-url {
  width: 150px;
}
.img_assist #edit-align {
  width: 100px;
}  
#finalhtmlcode {
  display: none;
  visibility: hidden;
}

/* Header Frame */
#header-uploading, #header-properties, #header-browse {
  float: left; 
  width: 80%;
}
#header-startover, #header-cancel {
  float: right;
  width: 19%;
  text-align: right;
}

#header-uploading input, #header-properties input, #header-browse input, #header-startover input, #header-cancel input, #header-uploading select, #header-properties select, #header-browse select {
  margin-top: 0;
  margin-bottom: 0;
  vertical-align: baseline;
}


/**
 * POPUP IMAGES WINDOW
 */
body#img_assist_popup {
  margin: 0;
  padding: 0;
}

/**
 * FINAL PAGE (node)
 * You may want to copy these styles to your theme's CSS file and then set img_assist.css 
 * not to load on every page.  This can be set on the img_assist settings page.
 */ 
span.inline-left {
  display: block;
  float: left;
  margin: 5px 5px 5px 0px;
}
span.inline-right {
  display: block;
  float: right;
  margin: 5px 0px 5px 5px;
}
span.inline-center {
  display: block;
  text-align: center;
}
span.inline .caption {
  display: block;
}
.image-clear { /* Clear floated images. Copied from Garland's style.css. */
  display: block;
  clear: both;
  height: 1px;
  line-height: 0px;
  font-size: 0px;
  margin-bottom: -1px;
}

File

img_assist.css
View source
  1. /**
  2. * IMG ASSIST WINDOW
  3. */
  4. body.img_assist {
  5. margin: 0px;
  6. padding: 5px;
  7. width: auto;
  8. min-width: 0;
  9. color: #000000;
  10. font-family: Arial, Helvetica, sans-serif;
  11. font-size: .8em;
  12. background-color: #efefef;
  13. }
  14. /* Thin line between the header frame and the main frame */
  15. body#img_assist_thumbs, body#img_assist_upload, body#img_assist_properties {
  16. border-top: 1px solid #000;
  17. }
  18. /* Darker background color in the header frame */
  19. body#img_assist_header {
  20. background-color:#ccc;
  21. margin: 0;
  22. }
  23. /* Thin border around images */
  24. .img_assist img {
  25. border: 1px solid #000;
  26. }
  27. .img_assist-button {
  28. font-weight: bold;
  29. margin: 3px;
  30. }
  31. .img_assist img {
  32. display: inline; /* pushbutton theme changes the display to block */
  33. }
  34. .img_assist .messages {
  35. border: 1px solid #000;
  36. background-color: #ccc;
  37. padding: 2px;
  38. margin: 3px 0px 6px 0px;
  39. }
  40. /* Upload Window */
  41. .img_assist .node-form {
  42. width: 95%;
  43. }
  44. /* Properties Window */
  45. .img_assist #preview {
  46. padding: 5px 10px 5px 5px;
  47. }
  48. .img_assist .form-item { /* the first form field on the properties frame should be at the top of the page */
  49. margin-top: 0px;
  50. margin-bottom: 1em;
  51. }
  52. .img_assist #caption {
  53. display: block;
  54. }
  55. .img_assist #header-browse div.form-item,
  56. .img_assist #link-group div.form-item,
  57. .img_assist #edit-size div.form-item,
  58. .img_assist #size-other div.form-item {
  59. display: inline;
  60. }
  61. .img_assist #alignment {
  62. text-align: left;
  63. }
  64. .img_assist #edit-title, .img_assist #edit-desc {
  65. width: 99%;
  66. }
  67. .img_assist #edit-link {
  68. width: 155px;
  69. }
  70. .img_assist #edit-url {
  71. width: 150px;
  72. }
  73. .img_assist #edit-align {
  74. width: 100px;
  75. }
  76. #finalhtmlcode {
  77. display: none;
  78. visibility: hidden;
  79. }
  80. /* Header Frame */
  81. #header-uploading, #header-properties, #header-browse {
  82. float: left;
  83. width: 80%;
  84. }
  85. #header-startover, #header-cancel {
  86. float: right;
  87. width: 19%;
  88. text-align: right;
  89. }
  90. #header-uploading input, #header-properties input, #header-browse input, #header-startover input, #header-cancel input, #header-uploading select, #header-properties select, #header-browse select {
  91. margin-top: 0;
  92. margin-bottom: 0;
  93. vertical-align: baseline;
  94. }
  95. /**
  96. * POPUP IMAGES WINDOW
  97. */
  98. body#img_assist_popup {
  99. margin: 0;
  100. padding: 0;
  101. }
  102. /**
  103. * FINAL PAGE (node)
  104. * You may want to copy these styles to your theme's CSS file and then set img_assist.css
  105. * not to load on every page. This can be set on the img_assist settings page.
  106. */
  107. span.inline-left {
  108. display: block;
  109. float: left;
  110. margin: 5px 5px 5px 0px;
  111. }
  112. span.inline-right {
  113. display: block;
  114. float: right;
  115. margin: 5px 0px 5px 5px;
  116. }
  117. span.inline-center {
  118. display: block;
  119. text-align: center;
  120. }
  121. span.inline .caption {
  122. display: block;
  123. }
  124. .image-clear { /* Clear floated images. Copied from Garland's style.css. */
  125. display: block;
  126. clear: both;
  127. height: 1px;
  128. line-height: 0px;
  129. font-size: 0px;
  130. margin-bottom: -1px;
  131. }