| 123456789101112131415161718192021222324252627282930 |
- /**
- * Styles specific to Mollom's "Report as Inappropriate" feature aesthetics.
- */
- /**
- * The floating report form holder.
- */
- div.mollom-flag-reasons {
- background-color: #f6f6f2;
- border: #ccc 1px outset;
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- border-radius: 4px;
- -webkit-box-shadow: 2px 2px 8px #b7b7b7;
- -moz-box-shadow: 2px 2px 8px #b7b7b7;
- box-shadow: 2px 2px 8px #b7b7b7;
- -webkit-background-clip: padding-box;
- -moz-background-clip: padding-box;
- background-clip: padding-box;
- padding: 1em;
- }
- /**
- * Reason list presented within report form.
- */
- div.mollom-flag-reasons ul {
- list-style-type: none;
- margin: 0;
- padding: 0;
- }
|