uni-ai-msg.scss 1.1 KB
Newer Older
DCloud_JSON's avatar
1.0.12  
DCloud_JSON 已提交
1
@import "@/lib/highlight/github-dark.min.css";
DCloud_JSON's avatar
DCloud_JSON 已提交
2

DCloud_JSON's avatar
1.0.17  
DCloud_JSON 已提交
3 4 5 6
/* #ifndef APP-NVUE */
.rich-text-box {
	max-width: 100%;
}
DCloud_JSON's avatar
DCloud_JSON 已提交
7 8 9 10 11
.rich-text-box ::v-deep pre.hljs {
	padding: 5px 8px;
	margin: 5px 0;
	overflow: auto;
}
DCloud_JSON's avatar
1.2.2  
DCloud_JSON 已提交
12 13 14 15 16 17 18 19 20 21 22

.rich-text-box ::v-deep table {
	border-spacing: 0;
}

.rich-text-box ::v-deep th,
.rich-text-box ::v-deep td
{
	border: 1px solid #666;
	padding:3px 5px;
}
DCloud_JSON's avatar
DCloud_JSON 已提交
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77

.cursor {
	display: none;
}

.show-cursor .cursor {
	display: inline-block;
	color: blue;
	font-weight: bold;
	animation: blinking 1s infinite;
}

@keyframes blinking {
	from {
		opacity: 1.0;
	}

	to {
		opacity: 0.0;
	}
}

/* #endif */

/* #ifdef H5 */
.copy-box {
	position: fixed;
}

// .copy-mask{
// 	background-color: rgba(255,255,255,0.5);
// 	width: 100vw;
// 	height: 100vh;
// 	position: fixed;
// 	top: 0;
// 	left: 0;
// 	z-index: 9;
// }
.copy {
	position: fixed;
	background-color: #fff;
	box-shadow: 0 0 3px #aaa;
	padding: 5px;
	border-radius: 5px;
	z-index: 999;
	cursor: pointer;
	font-size: 14px;
	color: #222;
}

.copy:hover {
	color: #00a953;
}

/* #endif */