refactor(client): use css modules
This commit is contained in:
		
							parent
							
								
									a3832d73fd
								
							
						
					
					
						commit
						daddec8362
					
				
					 3 changed files with 146 additions and 173 deletions
				
			
		|  | @ -1,12 +1,12 @@ | |||
| <template> | ||||
| <div class="fefdfafb"> | ||||
| 	<MkAvatar class="avatar" :user="$i"/> | ||||
| 	<div class="main"> | ||||
| 		<div class="header"> | ||||
| <div :class="$style.root"> | ||||
| 	<MkAvatar :class="$style.avatar" :user="$i"/> | ||||
| 	<div :class="$style.main"> | ||||
| 		<div :class="$style.header"> | ||||
| 			<MkUserName :user="$i"/> | ||||
| 		</div> | ||||
| 		<div class="body"> | ||||
| 			<div class="content"> | ||||
| 		<div> | ||||
| 			<div :class="$style.content"> | ||||
| 				<Mfm :text="text.trim()" :author="$i" :i="$i"/> | ||||
| 			</div> | ||||
| 		</div> | ||||
|  | @ -22,75 +22,48 @@ const props = defineProps<{ | |||
| }>(); | ||||
| </script> | ||||
| 
 | ||||
| <style lang="scss" scoped> | ||||
| .fefdfafb { | ||||
| <style lang="scss" module> | ||||
| .root { | ||||
| 	display: flex; | ||||
| 	margin: 0; | ||||
| 	padding: 0; | ||||
| 	overflow: clip; | ||||
| 	font-size: 0.95em; | ||||
| } | ||||
| 
 | ||||
| 	> .avatar { | ||||
| 		flex-shrink: 0; | ||||
| 		display: block; | ||||
| 		margin: 0 10px 0 0; | ||||
| 		width: 40px; | ||||
| 		height: 40px; | ||||
| 		border-radius: 8px; | ||||
| 		pointer-events: none; | ||||
| 	} | ||||
| .avatar { | ||||
| 	flex-shrink: 0 !important; | ||||
| 	display: block !important; | ||||
| 	margin: 0 10px 0 0 !important; | ||||
| 	width: 40px !important; | ||||
| 	height: 40px !important; | ||||
| 	border-radius: 8px !important; | ||||
| 	pointer-events: none !important; | ||||
| } | ||||
| 
 | ||||
| 	> .main { | ||||
| 		flex: 1; | ||||
| 		min-width: 0; | ||||
| .main { | ||||
| 	flex: 1; | ||||
| 	min-width: 0; | ||||
| } | ||||
| 
 | ||||
| 		> .header { | ||||
| 			margin-bottom: 2px; | ||||
| 			font-weight: bold; | ||||
| 		} | ||||
| 
 | ||||
| 		> .body { | ||||
| 
 | ||||
| 			> .cw { | ||||
| 				cursor: default; | ||||
| 				display: block; | ||||
| 				margin: 0; | ||||
| 				padding: 0; | ||||
| 				overflow-wrap: break-word; | ||||
| 
 | ||||
| 				> .text { | ||||
| 					margin-right: 8px; | ||||
| 				} | ||||
| 			} | ||||
| 
 | ||||
| 			> .content { | ||||
| 				> .text { | ||||
| 					cursor: default; | ||||
| 					margin: 0; | ||||
| 					padding: 0; | ||||
| 				} | ||||
| 			} | ||||
| 		} | ||||
| 	} | ||||
| .header { | ||||
| 	margin-bottom: 2px; | ||||
| 	font-weight: bold; | ||||
| } | ||||
| 
 | ||||
| @container (min-width: 350px) { | ||||
| 	.fefdfafb { | ||||
| 		> .avatar { | ||||
| 			margin: 0 10px 0 0; | ||||
| 			width: 44px; | ||||
| 			height: 44px; | ||||
| 		} | ||||
| 	.avatar { | ||||
| 		margin: 0 10px 0 0 !important; | ||||
| 		width: 44px !important; | ||||
| 		height: 44px !important; | ||||
| 	} | ||||
| } | ||||
| 
 | ||||
| @container (min-width: 500px) { | ||||
| 	.fefdfafb { | ||||
| 		> .avatar { | ||||
| 			margin: 0 12px 0 0; | ||||
| 			width: 48px; | ||||
| 			height: 48px; | ||||
| 		} | ||||
| 	.avatar { | ||||
| 		margin: 0 12px 0 0 !important; | ||||
| 		width: 48px !important; | ||||
| 		height: 48px !important; | ||||
| 	} | ||||
| } | ||||
| </style> | ||||
|  |  | |||
|  | @ -1,42 +1,42 @@ | |||
| <template> | ||||
| <MkModal ref="modal" :z-priority="'high'" :src="src" @click="modal.close()" @closed="emit('closed')"> | ||||
| 	<div class="gqyayizv _popup"> | ||||
| 		<button key="public" class="_button item" :class="{ active: v === 'public' }" data-index="1" @click="choose('public')"> | ||||
| 			<div class="icon"><i class="ti ti-world"></i></div> | ||||
| 			<div class="body"> | ||||
| 				<span>{{ i18n.ts._visibility.public }}</span> | ||||
| 				<span>{{ i18n.ts._visibility.publicDescription }}</span> | ||||
| 	<div class="_popup" :class="$style.root"> | ||||
| 		<button key="public" class="_button" :class="[$style.item, { [$style.active]: v === 'public' }]" data-index="1" @click="choose('public')"> | ||||
| 			<div :class="$style.icon"><i class="ti ti-world"></i></div> | ||||
| 			<div :class="$style.body"> | ||||
| 				<span :class="$style.itemTitle">{{ i18n.ts._visibility.public }}</span> | ||||
| 				<span :class="$style.itemDescription">{{ i18n.ts._visibility.publicDescription }}</span> | ||||
| 			</div> | ||||
| 		</button> | ||||
| 		<button key="home" class="_button item" :class="{ active: v === 'home' }" data-index="2" @click="choose('home')"> | ||||
| 			<div class="icon"><i class="ti ti-home"></i></div> | ||||
| 			<div class="body"> | ||||
| 				<span>{{ i18n.ts._visibility.home }}</span> | ||||
| 				<span>{{ i18n.ts._visibility.homeDescription }}</span> | ||||
| 		<button key="home" class="_button" :class="[$style.item, { [$style.active]: v === 'home' }]" data-index="2" @click="choose('home')"> | ||||
| 			<div :class="$style.icon"><i class="ti ti-home"></i></div> | ||||
| 			<div :class="$style.body"> | ||||
| 				<span :class="$style.itemTitle">{{ i18n.ts._visibility.home }}</span> | ||||
| 				<span :class="$style.itemDescription">{{ i18n.ts._visibility.homeDescription }}</span> | ||||
| 			</div> | ||||
| 		</button> | ||||
| 		<button key="followers" class="_button item" :class="{ active: v === 'followers' }" data-index="3" @click="choose('followers')"> | ||||
| 			<div class="icon"><i class="ti ti-lock"></i></div> | ||||
| 			<div class="body"> | ||||
| 				<span>{{ i18n.ts._visibility.followers }}</span> | ||||
| 				<span>{{ i18n.ts._visibility.followersDescription }}</span> | ||||
| 		<button key="followers" class="_button" :class="[$style.item, { [$style.active]: v === 'followers' }]" data-index="3" @click="choose('followers')"> | ||||
| 			<div :class="$style.icon"><i class="ti ti-lock"></i></div> | ||||
| 			<div :class="$style.body"> | ||||
| 				<span :class="$style.itemTitle">{{ i18n.ts._visibility.followers }}</span> | ||||
| 				<span :class="$style.itemDescription">{{ i18n.ts._visibility.followersDescription }}</span> | ||||
| 			</div> | ||||
| 		</button> | ||||
| 		<button key="specified" :disabled="localOnly" class="_button item" :class="{ active: v === 'specified' }" data-index="4" @click="choose('specified')"> | ||||
| 			<div class="icon"><i class="ti ti-mail"></i></div> | ||||
| 			<div class="body"> | ||||
| 				<span>{{ i18n.ts._visibility.specified }}</span> | ||||
| 				<span>{{ i18n.ts._visibility.specifiedDescription }}</span> | ||||
| 		<button key="specified" :disabled="localOnly" class="_button" :class="[$style.item, { [$style.active]: v === 'specified' }]" data-index="4" @click="choose('specified')"> | ||||
| 			<div :class="$style.icon"><i class="ti ti-mail"></i></div> | ||||
| 			<div :class="$style.body"> | ||||
| 				<span :class="$style.itemTitle">{{ i18n.ts._visibility.specified }}</span> | ||||
| 				<span :class="$style.itemDescription">{{ i18n.ts._visibility.specifiedDescription }}</span> | ||||
| 			</div> | ||||
| 		</button> | ||||
| 		<div class="divider"></div> | ||||
| 		<button key="localOnly" class="_button item localOnly" :class="{ active: localOnly }" data-index="5" @click="localOnly = !localOnly"> | ||||
| 			<div class="icon"><i class="ti ti-world-off"></i></div> | ||||
| 			<div class="body"> | ||||
| 				<span>{{ i18n.ts._visibility.localOnly }}</span> | ||||
| 				<span>{{ i18n.ts._visibility.localOnlyDescription }}</span> | ||||
| 		<div :class="$style.divider"></div> | ||||
| 		<button key="localOnly" class="_button" :class="[$style.item, $style.localOnly, { [$style.active]: localOnly }]" data-index="5" @click="localOnly = !localOnly"> | ||||
| 			<div :class="$style.icon"><i class="ti ti-world-off"></i></div> | ||||
| 			<div :class="$style.body"> | ||||
| 				<span :class="$style.itemTitle">{{ i18n.ts._visibility.localOnly }}</span> | ||||
| 				<span :class="$style.itemDescription">{{ i18n.ts._visibility.localOnlyDescription }}</span> | ||||
| 			</div> | ||||
| 			<div class="toggle"><i :class="localOnly ? 'ti ti-toggle-right' : 'ti ti-toggle-left'"></i></div> | ||||
| 			<div :class="$style.toggle"><i :class="localOnly ? 'ti ti-toggle-right' : 'ti ti-toggle-left'"></i></div> | ||||
| 		</button> | ||||
| 	</div> | ||||
| </MkModal> | ||||
|  | @ -79,81 +79,81 @@ function choose(visibility: typeof misskey.noteVisibilities[number]): void { | |||
| } | ||||
| </script> | ||||
| 
 | ||||
| <style lang="scss" scoped> | ||||
| .gqyayizv { | ||||
| <style lang="scss" module> | ||||
| .root { | ||||
| 	width: 240px; | ||||
| 	padding: 8px 0; | ||||
| } | ||||
| 
 | ||||
| 	> .divider { | ||||
| 		margin: 8px 0; | ||||
| 		border-top: solid 0.5px var(--divider); | ||||
| .divider { | ||||
| 	margin: 8px 0; | ||||
| 	border-top: solid 0.5px var(--divider); | ||||
| } | ||||
| 
 | ||||
| .item { | ||||
| 	display: flex; | ||||
| 	padding: 8px 14px; | ||||
| 	font-size: 12px; | ||||
| 	text-align: left; | ||||
| 	width: 100%; | ||||
| 	box-sizing: border-box; | ||||
| 
 | ||||
| 	&:hover { | ||||
| 		background: rgba(0, 0, 0, 0.05); | ||||
| 	} | ||||
| 
 | ||||
| 	> .item { | ||||
| 		display: flex; | ||||
| 		padding: 8px 14px; | ||||
| 		font-size: 12px; | ||||
| 		text-align: left; | ||||
| 		width: 100%; | ||||
| 		box-sizing: border-box; | ||||
| 	&:active { | ||||
| 		background: rgba(0, 0, 0, 0.1); | ||||
| 	} | ||||
| 
 | ||||
| 		&:hover { | ||||
| 			background: rgba(0, 0, 0, 0.05); | ||||
| 		} | ||||
| 	&.active { | ||||
| 		color: var(--fgOnAccent); | ||||
| 		background: var(--accent); | ||||
| 	} | ||||
| 
 | ||||
| 		&:active { | ||||
| 			background: rgba(0, 0, 0, 0.1); | ||||
| 		} | ||||
| 
 | ||||
| 		&.active { | ||||
| 			color: var(--fgOnAccent); | ||||
| 			background: var(--accent); | ||||
| 		} | ||||
| 
 | ||||
| 		&.localOnly.active { | ||||
| 			color: var(--accent); | ||||
| 			background: inherit; | ||||
| 		} | ||||
| 
 | ||||
| 		> .icon { | ||||
| 			display: flex; | ||||
| 			justify-content: center; | ||||
| 			align-items: center; | ||||
| 			margin-right: 10px; | ||||
| 			width: 16px; | ||||
| 			top: 0; | ||||
| 			bottom: 0; | ||||
| 			margin-top: auto; | ||||
| 			margin-bottom: auto; | ||||
| 		} | ||||
| 
 | ||||
| 		> .body { | ||||
| 			flex: 1 1 auto; | ||||
| 			white-space: nowrap; | ||||
| 			overflow: hidden; | ||||
| 			text-overflow: ellipsis; | ||||
| 
 | ||||
| 			> span:first-child { | ||||
| 				display: block; | ||||
| 				font-weight: bold; | ||||
| 			} | ||||
| 
 | ||||
| 			> span:last-child:not(:first-child) { | ||||
| 				opacity: 0.6; | ||||
| 			} | ||||
| 		} | ||||
| 
 | ||||
| 		> .toggle { | ||||
| 			display: flex; | ||||
| 			justify-content: center; | ||||
| 			align-items: center; | ||||
| 			margin-left: 10px; | ||||
| 			width: 16px; | ||||
| 			top: 0; | ||||
| 			bottom: 0; | ||||
| 			margin-top: auto; | ||||
| 			margin-bottom: auto; | ||||
| 		} | ||||
| 	&.localOnly.active { | ||||
| 		color: var(--accent); | ||||
| 		background: inherit; | ||||
| 	} | ||||
| } | ||||
| 
 | ||||
| .icon { | ||||
| 	display: flex; | ||||
| 	justify-content: center; | ||||
| 	align-items: center; | ||||
| 	margin-right: 10px; | ||||
| 	width: 16px; | ||||
| 	top: 0; | ||||
| 	bottom: 0; | ||||
| 	margin-top: auto; | ||||
| 	margin-bottom: auto; | ||||
| } | ||||
| 
 | ||||
| .body { | ||||
| 	flex: 1 1 auto; | ||||
| 	white-space: nowrap; | ||||
| 	overflow: hidden; | ||||
| 	text-overflow: ellipsis; | ||||
| } | ||||
| 
 | ||||
| .itemTitle { | ||||
| 	display: block; | ||||
| 	font-weight: bold; | ||||
| } | ||||
| 
 | ||||
| .itemDescription { | ||||
| 	opacity: 0.6; | ||||
| } | ||||
| 
 | ||||
| .toggle { | ||||
| 	display: flex; | ||||
| 	justify-content: center; | ||||
| 	align-items: center; | ||||
| 	margin-left: 10px; | ||||
| 	width: 16px; | ||||
| 	top: 0; | ||||
| 	bottom: 0; | ||||
| 	margin-top: auto; | ||||
| 	margin-bottom: auto; | ||||
| } | ||||
| </style> | ||||
|  |  | |||
|  | @ -1,9 +1,9 @@ | |||
| <template> | ||||
| <MkModal ref="modal" :prefer-type="'dialog'" :z-priority="'high'" @click="success ? done() : () => {}" @closed="emit('closed')"> | ||||
| 	<div class="iuyakobc" :class="{ iconOnly: (text == null) || success }"> | ||||
| 		<i v-if="success" class="ti ti-check icon success"></i> | ||||
| 		<MkLoading v-else class="icon waiting" :em="true"/> | ||||
| 		<div v-if="text && !success" class="text">{{ text }}<MkEllipsis/></div> | ||||
| 	<div :class="[$style.root, { [$style.iconOnly]: (text == null) || success }]"> | ||||
| 		<i v-if="success" :class="[$style.icon, $style.success]" class="ti ti-check"></i> | ||||
| 		<MkLoading v-else :class="[$style.icon, $style.waiting]" :em="true"/> | ||||
| 		<div v-if="text && !success" :class="$style.text">{{ text }}<MkEllipsis/></div> | ||||
| 	</div> | ||||
| </MkModal> | ||||
| </template> | ||||
|  | @ -35,8 +35,8 @@ watch(() => props.showing, () => { | |||
| }); | ||||
| </script> | ||||
| 
 | ||||
| <style lang="scss" scoped> | ||||
| .iuyakobc { | ||||
| <style lang="scss" module> | ||||
| .root { | ||||
| 	margin: auto; | ||||
| 	position: relative; | ||||
| 	padding: 32px; | ||||
|  | @ -54,21 +54,21 @@ watch(() => props.showing, () => { | |||
| 		align-items: center; | ||||
| 		justify-content: center; | ||||
| 	} | ||||
| } | ||||
| 
 | ||||
| 	> .icon { | ||||
| 		font-size: 32px; | ||||
| .icon { | ||||
| 	font-size: 32px; | ||||
| 
 | ||||
| 		&.success { | ||||
| 			color: var(--accent); | ||||
| 		} | ||||
| 
 | ||||
| 		&.waiting { | ||||
| 			opacity: 0.7; | ||||
| 		} | ||||
| 	&.success { | ||||
| 		color: var(--accent); | ||||
| 	} | ||||
| 
 | ||||
| 	> .text { | ||||
| 		margin-top: 16px; | ||||
| 	&.waiting { | ||||
| 		opacity: 0.7; | ||||
| 	} | ||||
| } | ||||
| 
 | ||||
| .text { | ||||
| 	margin-top: 16px; | ||||
| } | ||||
| </style> | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue