aboutsummaryrefslogtreecommitdiffstats
path: root/WebContent/VAADIN/themes/base/browserframe/browserframe.scss
blob: fce9c11513dfed66545ee7e621cecf8f0f8ffe3b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
@mixin base-browserframe {

 	/* Removes duplicate scrollbars in some cases  */
	.v-browserframe {
		font-size: 0;
	}

	/* fix for #14813 - unable to scroll on iOS devices */
	.v-webkit.v-ios & .v-browserframe {
		-webkit-overflow-scrolling: touch;
		overflow:auto;
	}

	/* Some times a browser frame can contain a span with altenate text */
	.v-browserframe > span {
		font-size: $font-size;
	}
}