view src/bbcode/bbcode.css @ 47:7ef9222474e2

add more button
author Franklin Schmidt <fschmidt@gmail.com>
date Mon, 14 Nov 2022 23:01:29 -0700
parents 2d4f00755092
children f225e82b2bf8
line wrap: on
line source

div[bbcode] * {
 	box-sizing: border-box;
}
div[bbcode] textarea {
	font: inherit;
	padding: 7px;
	border-color: #DDDDDD;
	width: 100%;
}

div[bbcode] input[type="file"] {
	display: none;
}

div[bbcode] button:hover {
	cursor: pointer;
}

div[bbcode] div[buttons] {
	display: flex;
	justify-content: flex-end;
}
div[bbcode] div[buttons] button {
	border: 0;
	background-color: transparent;
	border-radius: 4px;
}
div[bbcode] div[buttons] button:hover {
	background-color: lightgrey;
}
div[bbcode] div[buttons] button[checked] {
	background-color: lightblue;
}
div[bbcode] div[buttons] img {
	height: 24px;
}