Welcome to mirror list, hosted at ThFree Co, Russian Federation.

systemtags.scss « css « core - github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6e100b12a92d14d94067f1ab0491cea07e564555 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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
78
79
80
81
82
83
84
85
86
87
88
/**
 * @copyright Copyright (c) 2016, John Molakvoæ <skjnldsv@protonmail.com>
 * @copyright Copyright (c) 2016, Robin Appelman <robin@icewind.nl>
 * @copyright Copyright (c) 2016, Jan-Christoph Borchardt <hey@jancborchardt.net>
 * @copyright Copyright (c) 2016, Vincent Petry <pvince81@owncloud.com>
 * @copyright Copyright (c) 2016, Erik Pellikka <erik@pellikka.org>
 * @copyright Copyright (c) 2015, Vincent Petry <pvince81@owncloud.com>
 *
 * @license GNU AGPL version 3 or any later version
 *
 */

.systemtags-select2-dropdown {
	.select2-result-label {
		.checkmark {
			visibility: hidden;
			margin-left: -5px;
			margin-right: 5px;
			padding: 4px;
		}
		.new-item .systemtags-actions {
			display: none;
		}
	}
	.select2-selected .select2-result-label .checkmark {
		visibility: visible;
	}
	.select2-result-label .icon {
		display: inline-block;
		opacity: .5;
		&.rename {
			padding: 4px;
		}
	}
	.systemtags-actions {
		position: absolute;
		right: 5px;
	}
	.systemtags-rename-form {
		display: inline-block;
		width: calc(100% - 20px);
		top: -6px;
		position: relative;
		input {
			display: inline-block;
			height: 30px;
			width: calc(100% - 40px);
		}
	}
	.label {
		width: 85%;
		display: inline-block;
		overflow: hidden;
		text-overflow: ellipsis;
		&.hidden {
			display: none;
		}
	}
	span {
		line-height: 25px;
	}
	.systemtags-item {
		display: inline-block;
		height: 25px;
		width: 100%;
	}
	.select2-result-label {
		height: 25px;
	}
}

.systemTagsInfoView,
.systemtags-select2-container {
	width: 100%;

	.select2-choices {
		flex-wrap: nowrap !important;
		max-height: 44px;
	}

	.select2-choices .select2-search-choice.select2-locked .label {
		opacity: 0.5;
	}
}

#select2-drop.systemtags-select2-dropdown .select2-results li.select2-result {
	padding: 5px;
}