You are here

advanced_forum.cloudless_day.images.css in Advanced Forum 6.2

/* FORUM LIST ICONS *********************************************************/

.forum-list-icon-wrapper {
  border-top: 1px solid #FFFFFF;
  background: #B5CDDF;
  background: -webkit-gradient(linear, left top, left bottom, from(#B5CDDF), to(#C8DBEA));
  background: -moz-linear-gradient(top, #B5CDDF, #C8DBEA);
  color: #3C78A7;
}

tr.even td.forum-list-icon-default .forum-list-icon-wrapper span, 
tr.odd td.forum-list-icon-default .forum-list-icon-wrapper span,
.forum-list-icon-legend .forum-list-icon-default {
  background: transparent url(images/forum_list_default.png) no-repeat center center;
}

tr.even td.forum-list-icon-new-posts .forum-list-icon-wrapper span, 
tr.odd td.forum-list-icon-new-posts .forum-list-icon-wrapper span,
.forum-list-icon-legend .forum-list-icon-new-posts {
  background: transparent url(images/forum_list_new_posts.png) no-repeat center center;
}

/* BUTTONIZED LINKS - GENERAL ***********************************************/
/* Based on http://css-tricks.com/examples/ButtonMaker */

a.af-button-large,
a.af-button-large:link, 
a.af-button-large:visited,
a.af-button-small,
a.af-button-small:link, 
a.af-button-small:visited,
a.author-pane-link,
a.author-pane-link:link,
a.author-pane-link:visited {
  color: #3C78A7;
}

.af-button-large,
.af-button-small,
.author-pane-link {
  border-top: 1px solid #FFFFFF;
  background: #EDF5FA;
  background: -webkit-gradient(linear, left top, left bottom, from(#EDF5FA), to(#C8DBEA));
  background: -moz-linear-gradient(top, #EDF5FA, #C8DBEA);
  color: #3C78A7;
}

a.af-button-large:hover,
a.af-button-small:hover,
a.author-pane-link:hover {
   background: #C8DBEA;
   color: #3C78A7;
   border-top-color: #EFEFEF;
}
   
a.af-button-large:active,
a.af-button-small:active,
a.author-pane-link:active {
   background: #C8DBEA;
   color: #3C78A7;
   border-top-color: #EFEFEF;
}

File

styles/cloudless_day/advanced_forum.cloudless_day.images.css
View source
  1. /* FORUM LIST ICONS *********************************************************/
  2. .forum-list-icon-wrapper {
  3. border-top: 1px solid #FFFFFF;
  4. background: #B5CDDF;
  5. background: -webkit-gradient(linear, left top, left bottom, from(#B5CDDF), to(#C8DBEA));
  6. background: -moz-linear-gradient(top, #B5CDDF, #C8DBEA);
  7. color: #3C78A7;
  8. }
  9. tr.even td.forum-list-icon-default .forum-list-icon-wrapper span,
  10. tr.odd td.forum-list-icon-default .forum-list-icon-wrapper span,
  11. .forum-list-icon-legend .forum-list-icon-default {
  12. background: transparent url(images/forum_list_default.png) no-repeat center center;
  13. }
  14. tr.even td.forum-list-icon-new-posts .forum-list-icon-wrapper span,
  15. tr.odd td.forum-list-icon-new-posts .forum-list-icon-wrapper span,
  16. .forum-list-icon-legend .forum-list-icon-new-posts {
  17. background: transparent url(images/forum_list_new_posts.png) no-repeat center center;
  18. }
  19. /* BUTTONIZED LINKS - GENERAL ***********************************************/
  20. /* Based on http://css-tricks.com/examples/ButtonMaker */
  21. a.af-button-large,
  22. a.af-button-large:link,
  23. a.af-button-large:visited,
  24. a.af-button-small,
  25. a.af-button-small:link,
  26. a.af-button-small:visited,
  27. a.author-pane-link,
  28. a.author-pane-link:link,
  29. a.author-pane-link:visited {
  30. color: #3C78A7;
  31. }
  32. .af-button-large,
  33. .af-button-small,
  34. .author-pane-link {
  35. border-top: 1px solid #FFFFFF;
  36. background: #EDF5FA;
  37. background: -webkit-gradient(linear, left top, left bottom, from(#EDF5FA), to(#C8DBEA));
  38. background: -moz-linear-gradient(top, #EDF5FA, #C8DBEA);
  39. color: #3C78A7;
  40. }
  41. a.af-button-large:hover,
  42. a.af-button-small:hover,
  43. a.author-pane-link:hover {
  44. background: #C8DBEA;
  45. color: #3C78A7;
  46. border-top-color: #EFEFEF;
  47. }
  48. a.af-button-large:active,
  49. a.af-button-small:active,
  50. a.author-pane-link:active {
  51. background: #C8DBEA;
  52. color: #3C78A7;
  53. border-top-color: #EFEFEF;
  54. }