User:Funa-enpitu/Forum/post-styles.css

From mediawiki.org

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
/**
 * MediaWiki用掲示板システムを提供する。
 * @author Funa-enpitu
 * @source https://www.mediawiki.org/wiki/User:Funa-enpitu/Forum/post-styles.js
 * @license Creative Commons Attribution-ShareAlike License 4.0
 * @latest 2024/03/29 (JST)
 */
.f-post{
	width: 100%;
	margin-bottom:8px;
}
.f-header{
	display: flex;
	padding: 0 5px;
	background: #DDDDDD;
	border: 2px solid #BBBBBB;
	border-radius: 3px 3px 0 0;
	font-weight: bold;
}
.f-number-text{
	color:#000000;
}
.f-user-text{
	margin-left:7px;
	color:green
}
.f-date{
	margin-left: auto;
}
.f-content{
	border:2px solid #BBBBBB;
	border-radius:0 0 3px 3px;
	padding: 0 5px;
	white-space: pre-wrap;
}
.f-content p{
	display: inline;
	margin: 0;
	padding: 0;
	white-space: normal;
}
blockquote *{
	white-space: pre !important;
}
ol, ul, dd{
	white-space: normal;
}