Sfoglia il codice sorgente

Code refactoring: added missing spaces to docs strings in various styles sheets.

Aleksander Nowodzinski 8 anni fa
parent
commit
2fdd59965b

+ 2 - 2
packages/ckeditor5-theme-lark/theme/ckeditor5-image/image.css

@@ -8,10 +8,10 @@
 		text-align: center;
 
 		& > img {
-			/*Center the image if its width is smaller than content's width.*/
+			/* Center the image if its width is smaller than content's width. */
 			margin: 0 auto;
 
-			/*Make sure the image never exceeds the size of the parent container (#67).*/
+			/* Make sure the image never exceeds the size of the parent container (#67). */
 			max-width: 100%;
 		}
 	}

+ 1 - 1
packages/ckeditor5-theme-lark/theme/ckeditor5-link/linkform.css

@@ -25,7 +25,7 @@
 	padding-top: var(--ck-spacing-large);
 
 	& .ck-button {
-		/*"Save" and "Cancel" buttons.*/
+		/* "Save" and "Cancel" buttons. */
 		& + .ck-button {
 			margin-right: var(--ck-spacing-medium);
 		}

+ 2 - 2
packages/ckeditor5-theme-lark/theme/ckeditor5-ui/components/tooltip/tooltip.css

@@ -74,9 +74,9 @@
 
 .ck-tooltip,
 .ck-tooltip__text::after {
-	/*For the transition to work, the tooltip must be controlled
+	/* For the transition to work, the tooltip must be controlled
 	using visibility+opacity. A delay prevents a "tooltip avalanche"
-	i.e. when scanning the toolbar with mouse cursor.*/
+	i.e. when scanning the toolbar with mouse cursor. */
 	transition: opacity .2s ease-in-out .2s;
 }