2016-05-12 16:05:20 +00:00
|
|
|
/*
|
|
|
|
This file is part of Telegram Desktop,
|
2018-01-03 10:23:14 +00:00
|
|
|
the official desktop application for the Telegram messaging service.
|
2016-05-12 16:05:20 +00:00
|
|
|
|
2018-01-03 10:23:14 +00:00
|
|
|
For license and copyright information please follow this link:
|
|
|
|
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
2016-05-12 16:05:20 +00:00
|
|
|
*/
|
2019-09-17 16:13:12 +00:00
|
|
|
using "ui/basic.style";
|
2016-05-12 16:05:20 +00:00
|
|
|
|
2016-12-09 18:56:01 +00:00
|
|
|
using "ui/widgets/widgets.style";
|
2017-12-07 15:01:41 +00:00
|
|
|
using "info/info.style";
|
2016-11-15 11:56:49 +00:00
|
|
|
|
2016-05-12 16:05:20 +00:00
|
|
|
profileBg: windowBg;
|
|
|
|
|
|
|
|
profileTopBarHeight: topBarHeight;
|
2016-05-23 12:41:09 +00:00
|
|
|
|
2016-05-26 16:05:39 +00:00
|
|
|
profileDropAreaBg: profileBg;
|
2016-11-07 15:24:28 +00:00
|
|
|
profileDropAreaFg: lightButtonFg;
|
2016-05-27 10:57:11 +00:00
|
|
|
profileDropAreaPadding: margins(25px, 3px, 25px, 20px);
|
2016-05-26 16:05:39 +00:00
|
|
|
profileDropAreaTitleFont: font(24px);
|
2016-05-27 10:57:11 +00:00
|
|
|
profileDropAreaTitleTop: 30px;
|
2016-05-26 16:05:39 +00:00
|
|
|
profileDropAreaSubtitleFont: font(16px);
|
2016-05-27 10:57:11 +00:00
|
|
|
profileDropAreaSubtitleTop: 68px;
|
2016-05-26 16:05:39 +00:00
|
|
|
profileDropAreaBorderFg: profileDropAreaFg;
|
|
|
|
profileDropAreaBorderWidth: 3px;
|
2016-05-27 10:57:11 +00:00
|
|
|
profileDropAreaDuration: 200;
|
2016-05-26 16:05:39 +00:00
|
|
|
|
2016-06-03 07:20:24 +00:00
|
|
|
profileBlockMarginTop: 14px;
|
2016-06-10 11:18:55 +00:00
|
|
|
profileBlockTitleHeight: 24px;
|
2016-05-31 19:27:11 +00:00
|
|
|
profileBlockTitleFont: font(14px semibold);
|
2016-12-21 15:05:58 +00:00
|
|
|
profileBlockTitleFg: windowBoldFg;
|
2016-06-03 07:20:24 +00:00
|
|
|
profileBlockTitlePosition: point(24px, 0px);
|
2016-11-16 10:44:06 +00:00
|
|
|
profileBlockTextPart: FlatLabel(defaultFlatLabel) {
|
2017-11-10 15:45:10 +00:00
|
|
|
minWidth: 180px;
|
2016-05-31 19:27:11 +00:00
|
|
|
margin: margins(5px, 5px, 5px, 5px);
|
|
|
|
}
|
2016-11-16 10:44:06 +00:00
|
|
|
profileBlockOneLineTextPart: FlatLabel(profileBlockTextPart) {
|
2017-11-10 15:45:10 +00:00
|
|
|
minWidth: 0px; // No need to set minWidth in one-line text.
|
2016-05-31 19:27:11 +00:00
|
|
|
maxHeight: 20px;
|
|
|
|
}
|
2016-06-01 16:40:51 +00:00
|
|
|
|
2016-12-21 15:05:58 +00:00
|
|
|
profileMemberNameFg: windowBoldFg;
|