From: Jinhyuk Jun Date: Wed, 3 Apr 2013 07:11:23 +0000 (+0900) Subject: BlackTheme : draft(1st) X-Git-Tag: accepted/tizen_2.1/20130425.023924~2^2~28 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f8c21f1676025171f240f36b317a450aea1a029b;p=framework%2Fweb%2Fweb-ui-fw.git BlackTheme : draft(1st) Change-Id: I51a0d580e7a195cb7bc9c5ae6f12eb4a7afd0b7f --- diff --git a/src/themes/tizen/common/jquery.mobile.segmentctrl.less b/src/themes/tizen/common/jquery.mobile.segmentctrl.less index 31d520d..b11932e 100644 --- a/src/themes/tizen/common/jquery.mobile.segmentctrl.less +++ b/src/themes/tizen/common/jquery.mobile.segmentctrl.less @@ -9,7 +9,7 @@ .ui-btn-text { font-size : 17 * @unit_base; font-weight : bold; - color : rgba(58, 58, 58, 1); + color : @color_segmentcontrol_Seg_text; } } @@ -41,4 +41,4 @@ .ui-controlgroup.ui-controlgroup-horizontal .ui-radio .ui-btn-down-s .ui-btn-inner { background : @color_tabbar_btn_tab_press; -} \ No newline at end of file +} diff --git a/src/themes/tizen/common/jquery.mobile.theme.less b/src/themes/tizen/common/jquery.mobile.theme.less index 10e4136..f88dca0 100644 --- a/src/themes/tizen/common/jquery.mobile.theme.less +++ b/src/themes/tizen/common/jquery.mobile.theme.less @@ -8,7 +8,7 @@ .ui-bar-s { border: none; - background : rgba(248, 246, 239, 1); // #F8F6EF /* Header Background */ + background : @color_bar_naviframe_bg; /* Header Background */ color: @color_bar_title_text; font-family: Helvetica, Arial, sans-serif; font-weight: bold; @@ -377,7 +377,7 @@ .ui-btn-box-s .ui-btn-inner { border: 1px solid; - border-color: rgb(199, 197, 190); + border-color: @color_button_inner_border; .LESSborder-radius-all( 0.3rem ); .LESSbox-boxsizing( border-box ); .LESSbutton_inner_box_style; diff --git a/src/themes/tizen/tizen-black/Makefile b/src/themes/tizen/tizen-black/Makefile new file mode 100644 index 0000000..bef9b1f --- /dev/null +++ b/src/themes/tizen/tizen-black/Makefile @@ -0,0 +1,81 @@ +THEME_NAME=tizen-black + +THEME_OUTPUT_ROOT ?= . +OUTPUT_DIR = ${THEME_OUTPUT_ROOT}/${THEME_NAME} + +CSS_OUTPUT = ${OUTPUT_DIR}/tizen-web-ui-fw-theme.css + +CSS_SRCS= ../common/jquery.mobile.theme.less.css \ + ../common/jquery.mobile.core.less.css \ + ../common/jquery.mobile.transitions.css \ + ../common/jquery.mobile.grids.css \ + ../common/jquery.mobile.headerfooter.less.css \ + ../common/jquery.mobile.navbar.css \ + ../common/jquery.mobile.button.less.css \ + ../common/jquery.mobile.collapsible.less.css \ + ../common/jquery.mobile.dialog.less.css \ + ../common/jquery.mobile.forms.checkboxradio.less.css \ + ../common/jquery.mobile.forms.fieldcontain.css \ + ../common/jquery.mobile.forms.select.css \ + ../common/jquery.mobile.forms.textinput.less.css \ + ../common/jquery.mobile.controlgroup.less.css \ + ../common/jquery.mobile.listview.less.css \ + ../common/jquery.mobile.segmentctrl.less.css \ + ../common/jquery.mobile.tizen.virtuallistview.less.css \ + ../common/jquery.mobile.tizen.scrollview.less.css \ + ../common/jquery.mobile.tizen.datetimepicker.less.css \ + ../common/jquery.mobile.tizen.popupwindow.less.css \ + ../common/jquery.mobile.tizen.ctxpopup.less.css \ + ../common/jquery.mobile.tizen.progressbar.less.css \ + ../common/jquery.mobile.tizen.progress.less.css \ + ../common/jquery.mobile.tizen.slider.less.css \ + ../common/jquery.mobile.tizen.gallery.less.css \ + ../common/jquery.mobile.tizen.notification.less.css \ + ../common/jquery.mobile.tizen.swipe.less.css \ + ../common/jquery.mobile.tizen.fastscroll.less.css \ + ../common/jquery.mobile.tizen.toggleswitch.less.css \ + ../common/jquery.mobile.tizen.triangle.less.css \ + ../common/jquery.mobile.tizen.tokentextarea.less.css \ + ../common/jquery.mobile.tizen.scrollview.handler.less.css \ + ../common/jquery.mobile.tizen.virtualgridview.less.css \ + ../common/jquery.mobile.tizen.multimediaview.less.css \ + ../common/jquery.mobile.popup.css \ + ../common/jquery.mobile.tizen.popup.less.css \ + ../common/jquery.mobile.tizen.misc.less.css \ + ../common/jquery.mobile.tizen.tabbar.less.css \ + ../common/jquery.mobile.tizen.splitview.less.css + +all: prepare css images js + +prepare: + -mkdir -p ${OUTPUT_DIR} + -ln -sf ${THEME_NAME} ${THEME_OUTPUT_ROOT}/tizen-tizen + +less: prepare + # Compiling less to css... + @for f in `find ../common -iname '*.less' | sort`; do \ + if test "config.less" = "$$f" ; then continue; fi; \ + echo " build $$f"; \ + lessc $$f > $$f.css; \ + $(CURDIR)/../../../../tools/CSS-trim.sh $$f.css; \ + done; + +css: prepare less + # Creating tizen-black theme... + @rm -f $(CSS_OUTPUT) + @for src in $(CSS_SRCS); do \ + cat $$src >> $(CSS_OUTPUT) ; \ + done + +images: prepare + # Copying tizen-black theme images... + @cp -a images/ ${OUTPUT_DIR}/ + +js: prepare + @cp -a theme.js ${OUTPUT_DIR} + +clean: + # Cleaning tizen-black theme... + -rm -rf $(OUTPUT_DIR) + -rm -f *.less.css + diff --git a/src/themes/tizen/tizen-black/config.less b/src/themes/tizen/tizen-black/config.less new file mode 100644 index 0000000..07ba753 --- /dev/null +++ b/src/themes/tizen/tizen-black/config.less @@ -0,0 +1,5 @@ +/**************************** + * Tizen Common Less Header * + ****************************/ +@import "../common/jquery.mobile.tizen.less"; +@import "style.less"; \ No newline at end of file diff --git a/src/themes/tizen/tizen-black/images/00_Nocontents_multimedia.png b/src/themes/tizen/tizen-black/images/00_Nocontents_multimedia.png new file mode 100644 index 0000000..611afcb Binary files /dev/null and b/src/themes/tizen/tizen-black/images/00_Nocontents_multimedia.png differ diff --git a/src/themes/tizen/tizen-black/images/00_Nocontents_picture.png b/src/themes/tizen/tizen-black/images/00_Nocontents_picture.png new file mode 100644 index 0000000..be8c2d2 Binary files /dev/null and b/src/themes/tizen/tizen-black/images/00_Nocontents_picture.png differ diff --git a/src/themes/tizen/tizen-black/images/00_Nocontents_text.png b/src/themes/tizen/tizen-black/images/00_Nocontents_text.png new file mode 100644 index 0000000..1e2cb5d Binary files /dev/null and b/src/themes/tizen/tizen-black/images/00_Nocontents_text.png differ diff --git a/src/themes/tizen/tizen-black/images/00_Nocontents_unnamed.png b/src/themes/tizen/tizen-black/images/00_Nocontents_unnamed.png new file mode 100644 index 0000000..ec6f36a Binary files /dev/null and b/src/themes/tizen/tizen-black/images/00_Nocontents_unnamed.png differ diff --git a/src/themes/tizen/tizen-black/images/00_button_delete.png b/src/themes/tizen/tizen-black/images/00_button_delete.png new file mode 100644 index 0000000..bd66d4f Binary files /dev/null and b/src/themes/tizen/tizen-black/images/00_button_delete.png differ diff --git a/src/themes/tizen/tizen-black/images/00_button_dim.png b/src/themes/tizen/tizen-black/images/00_button_dim.png new file mode 100644 index 0000000..859d3c6 Binary files /dev/null and b/src/themes/tizen/tizen-black/images/00_button_dim.png differ diff --git a/src/themes/tizen/tizen-black/images/00_button_fullscreen_off.png b/src/themes/tizen/tizen-black/images/00_button_fullscreen_off.png new file mode 100644 index 0000000..1afb045 Binary files /dev/null and b/src/themes/tizen/tizen-black/images/00_button_fullscreen_off.png differ diff --git a/src/themes/tizen/tizen-black/images/00_button_fullscreen_on.png b/src/themes/tizen/tizen-black/images/00_button_fullscreen_on.png new file mode 100644 index 0000000..fc1d516 Binary files /dev/null and b/src/themes/tizen/tizen-black/images/00_button_fullscreen_on.png differ diff --git a/src/themes/tizen/tizen-black/images/00_button_off.png b/src/themes/tizen/tizen-black/images/00_button_off.png new file mode 100644 index 0000000..eb555ef Binary files /dev/null and b/src/themes/tizen/tizen-black/images/00_button_off.png differ diff --git a/src/themes/tizen/tizen-black/images/00_button_on.png b/src/themes/tizen/tizen-black/images/00_button_on.png new file mode 100644 index 0000000..aa3704c Binary files /dev/null and b/src/themes/tizen/tizen-black/images/00_button_on.png differ diff --git a/src/themes/tizen/tizen-black/images/00_button_pause.png b/src/themes/tizen/tizen-black/images/00_button_pause.png new file mode 100644 index 0000000..e32a1fb Binary files /dev/null and b/src/themes/tizen/tizen-black/images/00_button_pause.png differ diff --git a/src/themes/tizen/tizen-black/images/00_button_play.png b/src/themes/tizen/tizen-black/images/00_button_play.png new file mode 100644 index 0000000..be36511 Binary files /dev/null and b/src/themes/tizen/tizen-black/images/00_button_play.png differ diff --git a/src/themes/tizen/tizen-black/images/00_button_press.png b/src/themes/tizen/tizen-black/images/00_button_press.png new file mode 100644 index 0000000..6844f26 Binary files /dev/null and b/src/themes/tizen/tizen-black/images/00_button_press.png differ diff --git a/src/themes/tizen/tizen-black/images/00_button_radio.png b/src/themes/tizen/tizen-black/images/00_button_radio.png new file mode 100755 index 0000000..e7e3428 Binary files /dev/null and b/src/themes/tizen/tizen-black/images/00_button_radio.png differ diff --git a/src/themes/tizen/tizen-black/images/00_button_radio_select.png b/src/themes/tizen/tizen-black/images/00_button_radio_select.png new file mode 100755 index 0000000..6abcb9c Binary files /dev/null and b/src/themes/tizen/tizen-black/images/00_button_radio_select.png differ diff --git a/src/themes/tizen/tizen-black/images/00_check_bg.png b/src/themes/tizen/tizen-black/images/00_check_bg.png new file mode 100755 index 0000000..fbab13e Binary files /dev/null and b/src/themes/tizen/tizen-black/images/00_check_bg.png differ diff --git a/src/themes/tizen/tizen-black/images/00_check_bg_press.png b/src/themes/tizen/tizen-black/images/00_check_bg_press.png new file mode 100755 index 0000000..2ac47ab Binary files /dev/null and b/src/themes/tizen/tizen-black/images/00_check_bg_press.png differ diff --git a/src/themes/tizen/tizen-black/images/00_check_checking.png b/src/themes/tizen/tizen-black/images/00_check_checking.png new file mode 100755 index 0000000..e191167 Binary files /dev/null and b/src/themes/tizen/tizen-black/images/00_check_checking.png differ diff --git a/src/themes/tizen/tizen-black/images/00_contacts_button_header.png b/src/themes/tizen/tizen-black/images/00_contacts_button_header.png new file mode 100644 index 0000000..2046225 Binary files /dev/null and b/src/themes/tizen/tizen-black/images/00_contacts_button_header.png differ diff --git a/src/themes/tizen/tizen-black/images/00_contacts_button_header_press.png b/src/themes/tizen/tizen-black/images/00_contacts_button_header_press.png new file mode 100644 index 0000000..5c814b0 Binary files /dev/null and b/src/themes/tizen/tizen-black/images/00_contacts_button_header_press.png differ diff --git a/src/themes/tizen/tizen-black/images/00_icon_cancel.png b/src/themes/tizen/tizen-black/images/00_icon_cancel.png new file mode 100644 index 0000000..f244de0 Binary files /dev/null and b/src/themes/tizen/tizen-black/images/00_icon_cancel.png differ diff --git a/src/themes/tizen/tizen-black/images/00_icon_cancel_press.png b/src/themes/tizen/tizen-black/images/00_icon_cancel_press.png new file mode 100644 index 0000000..684bb8a Binary files /dev/null and b/src/themes/tizen/tizen-black/images/00_icon_cancel_press.png differ diff --git a/src/themes/tizen/tizen-black/images/00_list_process_01.png b/src/themes/tizen/tizen-black/images/00_list_process_01.png new file mode 100644 index 0000000..5c8fbb4 Binary files /dev/null and b/src/themes/tizen/tizen-black/images/00_list_process_01.png differ diff --git a/src/themes/tizen/tizen-black/images/00_messagebubble_bg_receive.9.png b/src/themes/tizen/tizen-black/images/00_messagebubble_bg_receive.9.png new file mode 100644 index 0000000..a4a7863 Binary files /dev/null and b/src/themes/tizen/tizen-black/images/00_messagebubble_bg_receive.9.png differ diff --git a/src/themes/tizen/tizen-black/images/00_messagebubble_bg_sent.9.png b/src/themes/tizen/tizen-black/images/00_messagebubble_bg_sent.9.png new file mode 100644 index 0000000..73abadf Binary files /dev/null and b/src/themes/tizen/tizen-black/images/00_messagebubble_bg_sent.9.png differ diff --git a/src/themes/tizen/tizen-black/images/00_messagebubble_date_bg.png b/src/themes/tizen/tizen-black/images/00_messagebubble_date_bg.png new file mode 100644 index 0000000..5399cb3 Binary files /dev/null and b/src/themes/tizen/tizen-black/images/00_messagebubble_date_bg.png differ diff --git a/src/themes/tizen/tizen-black/images/00_page_indicator_01.png b/src/themes/tizen/tizen-black/images/00_page_indicator_01.png new file mode 100644 index 0000000..c950e3b Binary files /dev/null and b/src/themes/tizen/tizen-black/images/00_page_indicator_01.png differ diff --git a/src/themes/tizen/tizen-black/images/00_page_indicator_02.png b/src/themes/tizen/tizen-black/images/00_page_indicator_02.png new file mode 100644 index 0000000..0533e9d Binary files /dev/null and b/src/themes/tizen/tizen-black/images/00_page_indicator_02.png differ diff --git a/src/themes/tizen/tizen-black/images/00_progress_bar.9.png b/src/themes/tizen/tizen-black/images/00_progress_bar.9.png new file mode 100644 index 0000000..43ff4a7 Binary files /dev/null and b/src/themes/tizen/tizen-black/images/00_progress_bar.9.png differ diff --git a/src/themes/tizen/tizen-black/images/00_progress_bg.9.png b/src/themes/tizen/tizen-black/images/00_progress_bg.9.png new file mode 100644 index 0000000..8d93e95 Binary files /dev/null and b/src/themes/tizen/tizen-black/images/00_progress_bg.9.png differ diff --git a/src/themes/tizen/tizen-black/images/00_scroll_bar_handler.png b/src/themes/tizen/tizen-black/images/00_scroll_bar_handler.png new file mode 100644 index 0000000..52ffbef Binary files /dev/null and b/src/themes/tizen/tizen-black/images/00_scroll_bar_handler.png differ diff --git a/src/themes/tizen/tizen-black/images/00_scroll_bar_handler_hor.png b/src/themes/tizen/tizen-black/images/00_scroll_bar_handler_hor.png new file mode 100644 index 0000000..76a84a9 Binary files /dev/null and b/src/themes/tizen/tizen-black/images/00_scroll_bar_handler_hor.png differ diff --git a/src/themes/tizen/tizen-black/images/00_splite_handler_h.png b/src/themes/tizen/tizen-black/images/00_splite_handler_h.png new file mode 100644 index 0000000..f6f2c97 Binary files /dev/null and b/src/themes/tizen/tizen-black/images/00_splite_handler_h.png differ diff --git a/src/themes/tizen/tizen-black/images/00_splite_handler_v.png b/src/themes/tizen/tizen-black/images/00_splite_handler_v.png new file mode 100644 index 0000000..d0cf6bb Binary files /dev/null and b/src/themes/tizen/tizen-black/images/00_splite_handler_v.png differ diff --git a/src/themes/tizen/tizen-black/images/ajax-loader.png b/src/themes/tizen/tizen-black/images/ajax-loader.png new file mode 100644 index 0000000..811a2cd Binary files /dev/null and b/src/themes/tizen/tizen-black/images/ajax-loader.png differ diff --git a/src/themes/tizen/tizen-black/images/controls/00_field_btn_clear.png b/src/themes/tizen/tizen-black/images/controls/00_field_btn_clear.png new file mode 100644 index 0000000..3adb29e Binary files /dev/null and b/src/themes/tizen/tizen-black/images/controls/00_field_btn_clear.png differ diff --git a/src/themes/tizen/tizen-black/images/controls/00_field_btn_clear_press.png b/src/themes/tizen/tizen-black/images/controls/00_field_btn_clear_press.png new file mode 100644 index 0000000..d17cca6 Binary files /dev/null and b/src/themes/tizen/tizen-black/images/controls/00_field_btn_clear_press.png differ diff --git a/src/themes/tizen/tizen-black/images/controls/00_icon_favorite_off.png b/src/themes/tizen/tizen-black/images/controls/00_icon_favorite_off.png new file mode 100644 index 0000000..79a4f26 Binary files /dev/null and b/src/themes/tizen/tizen-black/images/controls/00_icon_favorite_off.png differ diff --git a/src/themes/tizen/tizen-black/images/controls/00_icon_favorite_on.png b/src/themes/tizen/tizen-black/images/controls/00_icon_favorite_on.png new file mode 100644 index 0000000..3737ff7 Binary files /dev/null and b/src/themes/tizen/tizen-black/images/controls/00_icon_favorite_on.png differ diff --git a/src/themes/tizen/tizen-black/images/controls/00_search_icon.png b/src/themes/tizen/tizen-black/images/controls/00_search_icon.png new file mode 100644 index 0000000..87e8b34 Binary files /dev/null and b/src/themes/tizen/tizen-black/images/controls/00_search_icon.png differ diff --git a/src/themes/tizen/tizen-black/images/controls/00_slider_button_brightness_01.png b/src/themes/tizen/tizen-black/images/controls/00_slider_button_brightness_01.png new file mode 100644 index 0000000..cf4e136 Binary files /dev/null and b/src/themes/tizen/tizen-black/images/controls/00_slider_button_brightness_01.png differ diff --git a/src/themes/tizen/tizen-black/images/controls/00_slider_button_brightness_01_press.png b/src/themes/tizen/tizen-black/images/controls/00_slider_button_brightness_01_press.png new file mode 100644 index 0000000..5a6283c Binary files /dev/null and b/src/themes/tizen/tizen-black/images/controls/00_slider_button_brightness_01_press.png differ diff --git a/src/themes/tizen/tizen-black/images/controls/00_slider_button_brightness_02.png b/src/themes/tizen/tizen-black/images/controls/00_slider_button_brightness_02.png new file mode 100644 index 0000000..139c428 Binary files /dev/null and b/src/themes/tizen/tizen-black/images/controls/00_slider_button_brightness_02.png differ diff --git a/src/themes/tizen/tizen-black/images/controls/00_slider_button_brightness_02_press.png b/src/themes/tizen/tizen-black/images/controls/00_slider_button_brightness_02_press.png new file mode 100644 index 0000000..9bacefd Binary files /dev/null and b/src/themes/tizen/tizen-black/images/controls/00_slider_button_brightness_02_press.png differ diff --git a/src/themes/tizen/tizen-black/images/controls/00_slider_button_volume_01.png b/src/themes/tizen/tizen-black/images/controls/00_slider_button_volume_01.png new file mode 100644 index 0000000..5a50be3 Binary files /dev/null and b/src/themes/tizen/tizen-black/images/controls/00_slider_button_volume_01.png differ diff --git a/src/themes/tizen/tizen-black/images/controls/00_slider_button_volume_01_press.png b/src/themes/tizen/tizen-black/images/controls/00_slider_button_volume_01_press.png new file mode 100644 index 0000000..79f1eb1 Binary files /dev/null and b/src/themes/tizen/tizen-black/images/controls/00_slider_button_volume_01_press.png differ diff --git a/src/themes/tizen/tizen-black/images/controls/00_slider_button_volume_02.png b/src/themes/tizen/tizen-black/images/controls/00_slider_button_volume_02.png new file mode 100644 index 0000000..6c65736 Binary files /dev/null and b/src/themes/tizen/tizen-black/images/controls/00_slider_button_volume_02.png differ diff --git a/src/themes/tizen/tizen-black/images/controls/00_slider_button_volume_02_press.png b/src/themes/tizen/tizen-black/images/controls/00_slider_button_volume_02_press.png new file mode 100644 index 0000000..567b91b Binary files /dev/null and b/src/themes/tizen/tizen-black/images/controls/00_slider_button_volume_02_press.png differ diff --git a/src/themes/tizen/tizen-black/images/controls/00_slider_handle.png b/src/themes/tizen/tizen-black/images/controls/00_slider_handle.png new file mode 100644 index 0000000..c1c00bb Binary files /dev/null and b/src/themes/tizen/tizen-black/images/controls/00_slider_handle.png differ diff --git a/src/themes/tizen/tizen-black/images/controls/00_slider_handle_press.png b/src/themes/tizen/tizen-black/images/controls/00_slider_handle_press.png new file mode 100644 index 0000000..3d5091c Binary files /dev/null and b/src/themes/tizen/tizen-black/images/controls/00_slider_handle_press.png differ diff --git a/src/themes/tizen/tizen-black/images/controls/00_slider_popup_bg.png b/src/themes/tizen/tizen-black/images/controls/00_slider_popup_bg.png new file mode 100644 index 0000000..adb5342 Binary files /dev/null and b/src/themes/tizen/tizen-black/images/controls/00_slider_popup_bg.png differ diff --git a/src/themes/tizen/tizen-black/images/controls/button/00_button_back.png b/src/themes/tizen/tizen-black/images/controls/button/00_button_back.png new file mode 100644 index 0000000..f87dcaf Binary files /dev/null and b/src/themes/tizen/tizen-black/images/controls/button/00_button_back.png differ diff --git a/src/themes/tizen/tizen-black/images/controls/button/00_button_back_press.png b/src/themes/tizen/tizen-black/images/controls/button/00_button_back_press.png new file mode 100644 index 0000000..9e5efd5 Binary files /dev/null and b/src/themes/tizen/tizen-black/images/controls/button/00_button_back_press.png differ diff --git a/src/themes/tizen/tizen-black/images/controls/button/00_button_bars.png b/src/themes/tizen/tizen-black/images/controls/button/00_button_bars.png new file mode 100644 index 0000000..0c34258 Binary files /dev/null and b/src/themes/tizen/tizen-black/images/controls/button/00_button_bars.png differ diff --git a/src/themes/tizen/tizen-black/images/controls/button/00_button_bars_press.png b/src/themes/tizen/tizen-black/images/controls/button/00_button_bars_press.png new file mode 100644 index 0000000..8cf6cc1 Binary files /dev/null and b/src/themes/tizen/tizen-black/images/controls/button/00_button_bars_press.png differ diff --git a/src/themes/tizen/tizen-black/images/controls/button/00_button_call.png b/src/themes/tizen/tizen-black/images/controls/button/00_button_call.png new file mode 100644 index 0000000..3b37c05 Binary files /dev/null and b/src/themes/tizen/tizen-black/images/controls/button/00_button_call.png differ diff --git a/src/themes/tizen/tizen-black/images/controls/button/00_button_call_press.png b/src/themes/tizen/tizen-black/images/controls/button/00_button_call_press.png new file mode 100644 index 0000000..71828ba Binary files /dev/null and b/src/themes/tizen/tizen-black/images/controls/button/00_button_call_press.png differ diff --git a/src/themes/tizen/tizen-black/images/controls/button/00_button_check.png b/src/themes/tizen/tizen-black/images/controls/button/00_button_check.png new file mode 100644 index 0000000..309f3c8 Binary files /dev/null and b/src/themes/tizen/tizen-black/images/controls/button/00_button_check.png differ diff --git a/src/themes/tizen/tizen-black/images/controls/button/00_button_check_press.png b/src/themes/tizen/tizen-black/images/controls/button/00_button_check_press.png new file mode 100644 index 0000000..edfb788 Binary files /dev/null and b/src/themes/tizen/tizen-black/images/controls/button/00_button_check_press.png differ diff --git a/src/themes/tizen/tizen-black/images/controls/button/00_button_down.png b/src/themes/tizen/tizen-black/images/controls/button/00_button_down.png new file mode 100644 index 0000000..c04e1a5 Binary files /dev/null and b/src/themes/tizen/tizen-black/images/controls/button/00_button_down.png differ diff --git a/src/themes/tizen/tizen-black/images/controls/button/00_button_down_press.png b/src/themes/tizen/tizen-black/images/controls/button/00_button_down_press.png new file mode 100644 index 0000000..4096764 Binary files /dev/null and b/src/themes/tizen/tizen-black/images/controls/button/00_button_down_press.png differ diff --git a/src/themes/tizen/tizen-black/images/controls/button/00_button_expand_cancel.png b/src/themes/tizen/tizen-black/images/controls/button/00_button_expand_cancel.png new file mode 100644 index 0000000..fede48b Binary files /dev/null and b/src/themes/tizen/tizen-black/images/controls/button/00_button_expand_cancel.png differ diff --git a/src/themes/tizen/tizen-black/images/controls/button/00_button_expand_cancel_press.png b/src/themes/tizen/tizen-black/images/controls/button/00_button_expand_cancel_press.png new file mode 100644 index 0000000..d00f52d Binary files /dev/null and b/src/themes/tizen/tizen-black/images/controls/button/00_button_expand_cancel_press.png differ diff --git a/src/themes/tizen/tizen-black/images/controls/button/00_button_expand_closed.png b/src/themes/tizen/tizen-black/images/controls/button/00_button_expand_closed.png new file mode 100644 index 0000000..f8eaefe Binary files /dev/null and b/src/themes/tizen/tizen-black/images/controls/button/00_button_expand_closed.png differ diff --git a/src/themes/tizen/tizen-black/images/controls/button/00_button_expand_closed_press.png b/src/themes/tizen/tizen-black/images/controls/button/00_button_expand_closed_press.png new file mode 100644 index 0000000..8dfb3cf Binary files /dev/null and b/src/themes/tizen/tizen-black/images/controls/button/00_button_expand_closed_press.png differ diff --git a/src/themes/tizen/tizen-black/images/controls/button/00_button_expand_minus.png b/src/themes/tizen/tizen-black/images/controls/button/00_button_expand_minus.png new file mode 100644 index 0000000..6fbfec9 Binary files /dev/null and b/src/themes/tizen/tizen-black/images/controls/button/00_button_expand_minus.png differ diff --git a/src/themes/tizen/tizen-black/images/controls/button/00_button_expand_minus_press.png b/src/themes/tizen/tizen-black/images/controls/button/00_button_expand_minus_press.png new file mode 100644 index 0000000..271efc6 Binary files /dev/null and b/src/themes/tizen/tizen-black/images/controls/button/00_button_expand_minus_press.png differ diff --git a/src/themes/tizen/tizen-black/images/controls/button/00_button_expand_opened.png b/src/themes/tizen/tizen-black/images/controls/button/00_button_expand_opened.png new file mode 100644 index 0000000..7c1859c Binary files /dev/null and b/src/themes/tizen/tizen-black/images/controls/button/00_button_expand_opened.png differ diff --git a/src/themes/tizen/tizen-black/images/controls/button/00_button_expand_opened_press.png b/src/themes/tizen/tizen-black/images/controls/button/00_button_expand_opened_press.png new file mode 100644 index 0000000..4e4a824 Binary files /dev/null and b/src/themes/tizen/tizen-black/images/controls/button/00_button_expand_opened_press.png differ diff --git a/src/themes/tizen/tizen-black/images/controls/button/00_button_expand_send.png b/src/themes/tizen/tizen-black/images/controls/button/00_button_expand_send.png new file mode 100644 index 0000000..9d61de2 Binary files /dev/null and b/src/themes/tizen/tizen-black/images/controls/button/00_button_expand_send.png differ diff --git a/src/themes/tizen/tizen-black/images/controls/button/00_button_expand_send_press.png b/src/themes/tizen/tizen-black/images/controls/button/00_button_expand_send_press.png new file mode 100644 index 0000000..b3f5eb5 Binary files /dev/null and b/src/themes/tizen/tizen-black/images/controls/button/00_button_expand_send_press.png differ diff --git a/src/themes/tizen/tizen-black/images/controls/button/00_button_gear.png b/src/themes/tizen/tizen-black/images/controls/button/00_button_gear.png new file mode 100644 index 0000000..74f3b23 Binary files /dev/null and b/src/themes/tizen/tizen-black/images/controls/button/00_button_gear.png differ diff --git a/src/themes/tizen/tizen-black/images/controls/button/00_button_gear_press.png b/src/themes/tizen/tizen-black/images/controls/button/00_button_gear_press.png new file mode 100644 index 0000000..0026b1f Binary files /dev/null and b/src/themes/tizen/tizen-black/images/controls/button/00_button_gear_press.png differ diff --git a/src/themes/tizen/tizen-black/images/controls/button/00_button_grid.png b/src/themes/tizen/tizen-black/images/controls/button/00_button_grid.png new file mode 100644 index 0000000..39b2aea Binary files /dev/null and b/src/themes/tizen/tizen-black/images/controls/button/00_button_grid.png differ diff --git a/src/themes/tizen/tizen-black/images/controls/button/00_button_grid_press.png b/src/themes/tizen/tizen-black/images/controls/button/00_button_grid_press.png new file mode 100644 index 0000000..394834c Binary files /dev/null and b/src/themes/tizen/tizen-black/images/controls/button/00_button_grid_press.png differ diff --git a/src/themes/tizen/tizen-black/images/controls/button/00_button_home.png b/src/themes/tizen/tizen-black/images/controls/button/00_button_home.png new file mode 100644 index 0000000..51cef23 Binary files /dev/null and b/src/themes/tizen/tizen-black/images/controls/button/00_button_home.png differ diff --git a/src/themes/tizen/tizen-black/images/controls/button/00_button_home_press.png b/src/themes/tizen/tizen-black/images/controls/button/00_button_home_press.png new file mode 100644 index 0000000..92d6a22 Binary files /dev/null and b/src/themes/tizen/tizen-black/images/controls/button/00_button_home_press.png differ diff --git a/src/themes/tizen/tizen-black/images/controls/button/00_button_info.png b/src/themes/tizen/tizen-black/images/controls/button/00_button_info.png new file mode 100644 index 0000000..4b3d4aa Binary files /dev/null and b/src/themes/tizen/tizen-black/images/controls/button/00_button_info.png differ diff --git a/src/themes/tizen/tizen-black/images/controls/button/00_button_info_press.png b/src/themes/tizen/tizen-black/images/controls/button/00_button_info_press.png new file mode 100644 index 0000000..d64dba0 Binary files /dev/null and b/src/themes/tizen/tizen-black/images/controls/button/00_button_info_press.png differ diff --git a/src/themes/tizen/tizen-black/images/controls/button/00_button_left.png b/src/themes/tizen/tizen-black/images/controls/button/00_button_left.png new file mode 100644 index 0000000..e149d2a Binary files /dev/null and b/src/themes/tizen/tizen-black/images/controls/button/00_button_left.png differ diff --git a/src/themes/tizen/tizen-black/images/controls/button/00_button_left_press.png b/src/themes/tizen/tizen-black/images/controls/button/00_button_left_press.png new file mode 100644 index 0000000..4021993 Binary files /dev/null and b/src/themes/tizen/tizen-black/images/controls/button/00_button_left_press.png differ diff --git a/src/themes/tizen/tizen-black/images/controls/button/00_button_plus.png b/src/themes/tizen/tizen-black/images/controls/button/00_button_plus.png new file mode 100644 index 0000000..a0c3206 Binary files /dev/null and b/src/themes/tizen/tizen-black/images/controls/button/00_button_plus.png differ diff --git a/src/themes/tizen/tizen-black/images/controls/button/00_button_plus_press.png b/src/themes/tizen/tizen-black/images/controls/button/00_button_plus_press.png new file mode 100644 index 0000000..e57d07a Binary files /dev/null and b/src/themes/tizen/tizen-black/images/controls/button/00_button_plus_press.png differ diff --git a/src/themes/tizen/tizen-black/images/controls/button/00_button_refresh.png b/src/themes/tizen/tizen-black/images/controls/button/00_button_refresh.png new file mode 100644 index 0000000..3233cda Binary files /dev/null and b/src/themes/tizen/tizen-black/images/controls/button/00_button_refresh.png differ diff --git a/src/themes/tizen/tizen-black/images/controls/button/00_button_refresh_press.png b/src/themes/tizen/tizen-black/images/controls/button/00_button_refresh_press.png new file mode 100644 index 0000000..a499929 Binary files /dev/null and b/src/themes/tizen/tizen-black/images/controls/button/00_button_refresh_press.png differ diff --git a/src/themes/tizen/tizen-black/images/controls/button/00_button_rename.png b/src/themes/tizen/tizen-black/images/controls/button/00_button_rename.png new file mode 100644 index 0000000..4f35e3b Binary files /dev/null and b/src/themes/tizen/tizen-black/images/controls/button/00_button_rename.png differ diff --git a/src/themes/tizen/tizen-black/images/controls/button/00_button_rename_press.png b/src/themes/tizen/tizen-black/images/controls/button/00_button_rename_press.png new file mode 100644 index 0000000..0f28a7c Binary files /dev/null and b/src/themes/tizen/tizen-black/images/controls/button/00_button_rename_press.png differ diff --git a/src/themes/tizen/tizen-black/images/controls/button/00_button_right.png b/src/themes/tizen/tizen-black/images/controls/button/00_button_right.png new file mode 100644 index 0000000..72924f4 Binary files /dev/null and b/src/themes/tizen/tizen-black/images/controls/button/00_button_right.png differ diff --git a/src/themes/tizen/tizen-black/images/controls/button/00_button_right_press.png b/src/themes/tizen/tizen-black/images/controls/button/00_button_right_press.png new file mode 100644 index 0000000..e8f70da Binary files /dev/null and b/src/themes/tizen/tizen-black/images/controls/button/00_button_right_press.png differ diff --git a/src/themes/tizen/tizen-black/images/controls/button/00_button_search.png b/src/themes/tizen/tizen-black/images/controls/button/00_button_search.png new file mode 100644 index 0000000..4b2a336 Binary files /dev/null and b/src/themes/tizen/tizen-black/images/controls/button/00_button_search.png differ diff --git a/src/themes/tizen/tizen-black/images/controls/button/00_button_search_press.png b/src/themes/tizen/tizen-black/images/controls/button/00_button_search_press.png new file mode 100644 index 0000000..4545ea3 Binary files /dev/null and b/src/themes/tizen/tizen-black/images/controls/button/00_button_search_press.png differ diff --git a/src/themes/tizen/tizen-black/images/controls/button/00_button_star.png b/src/themes/tizen/tizen-black/images/controls/button/00_button_star.png new file mode 100644 index 0000000..d3c5f18 Binary files /dev/null and b/src/themes/tizen/tizen-black/images/controls/button/00_button_star.png differ diff --git a/src/themes/tizen/tizen-black/images/controls/button/00_button_star_press.png b/src/themes/tizen/tizen-black/images/controls/button/00_button_star_press.png new file mode 100644 index 0000000..460352d Binary files /dev/null and b/src/themes/tizen/tizen-black/images/controls/button/00_button_star_press.png differ diff --git a/src/themes/tizen/tizen-black/images/controls/button/00_button_warning.png b/src/themes/tizen/tizen-black/images/controls/button/00_button_warning.png new file mode 100644 index 0000000..f92e3c1 Binary files /dev/null and b/src/themes/tizen/tizen-black/images/controls/button/00_button_warning.png differ diff --git a/src/themes/tizen/tizen-black/images/controls/button/00_button_warning_press.png b/src/themes/tizen/tizen-black/images/controls/button/00_button_warning_press.png new file mode 100644 index 0000000..86300bb Binary files /dev/null and b/src/themes/tizen/tizen-black/images/controls/button/00_button_warning_press.png differ diff --git a/src/themes/tizen/tizen-black/images/controls/button/00_icon_jump.png b/src/themes/tizen/tizen-black/images/controls/button/00_icon_jump.png new file mode 100644 index 0000000..4bc978a Binary files /dev/null and b/src/themes/tizen/tizen-black/images/controls/button/00_icon_jump.png differ diff --git a/src/themes/tizen/tizen-black/images/controls/button/00_icon_jump_left.png b/src/themes/tizen/tizen-black/images/controls/button/00_icon_jump_left.png new file mode 100644 index 0000000..d02b92d Binary files /dev/null and b/src/themes/tizen/tizen-black/images/controls/button/00_icon_jump_left.png differ diff --git a/src/themes/tizen/tizen-black/images/controls/button/00_icon_jump_left_press.png b/src/themes/tizen/tizen-black/images/controls/button/00_icon_jump_left_press.png new file mode 100644 index 0000000..1ecc0de Binary files /dev/null and b/src/themes/tizen/tizen-black/images/controls/button/00_icon_jump_left_press.png differ diff --git a/src/themes/tizen/tizen-black/images/controls/button/00_icon_jump_press.png b/src/themes/tizen/tizen-black/images/controls/button/00_icon_jump_press.png new file mode 100644 index 0000000..26f5e4f Binary files /dev/null and b/src/themes/tizen/tizen-black/images/controls/button/00_icon_jump_press.png differ diff --git a/src/themes/tizen/tizen-black/images/page/00_icon_Back.png b/src/themes/tizen/tizen-black/images/page/00_icon_Back.png new file mode 100644 index 0000000..4326148 Binary files /dev/null and b/src/themes/tizen/tizen-black/images/page/00_icon_Back.png differ diff --git a/src/themes/tizen/tizen-black/images/page/00_icon_Back_press.png b/src/themes/tizen/tizen-black/images/page/00_icon_Back_press.png new file mode 100644 index 0000000..e13f5a4 Binary files /dev/null and b/src/themes/tizen/tizen-black/images/page/00_icon_Back_press.png differ diff --git a/src/themes/tizen/tizen-black/images/page/00_icon_edit.png b/src/themes/tizen/tizen-black/images/page/00_icon_edit.png new file mode 100644 index 0000000..3faa47d Binary files /dev/null and b/src/themes/tizen/tizen-black/images/page/00_icon_edit.png differ diff --git a/src/themes/tizen/tizen-black/images/page/00_icon_edit_press.png b/src/themes/tizen/tizen-black/images/page/00_icon_edit_press.png new file mode 100644 index 0000000..1ca9b52 Binary files /dev/null and b/src/themes/tizen/tizen-black/images/page/00_icon_edit_press.png differ diff --git a/src/themes/tizen/tizen-black/images/page/00_icon_more.png b/src/themes/tizen/tizen-black/images/page/00_icon_more.png new file mode 100644 index 0000000..7cade58 Binary files /dev/null and b/src/themes/tizen/tizen-black/images/page/00_icon_more.png differ diff --git a/src/themes/tizen/tizen-black/images/page/00_icon_more_press.png b/src/themes/tizen/tizen-black/images/page/00_icon_more_press.png new file mode 100644 index 0000000..1b35166 Binary files /dev/null and b/src/themes/tizen/tizen-black/images/page/00_icon_more_press.png differ diff --git a/src/themes/tizen/tizen-black/images/page/00_icon_plus.png b/src/themes/tizen/tizen-black/images/page/00_icon_plus.png new file mode 100644 index 0000000..e3aee60 Binary files /dev/null and b/src/themes/tizen/tizen-black/images/page/00_icon_plus.png differ diff --git a/src/themes/tizen/tizen-black/images/page/00_icon_plus_press.png b/src/themes/tizen/tizen-black/images/page/00_icon_plus_press.png new file mode 100644 index 0000000..7ce2633 Binary files /dev/null and b/src/themes/tizen/tizen-black/images/page/00_icon_plus_press.png differ diff --git a/src/themes/tizen/tizen-black/images/page/00_toolbar_button_bg.9.png b/src/themes/tizen/tizen-black/images/page/00_toolbar_button_bg.9.png new file mode 100644 index 0000000..c909caf Binary files /dev/null and b/src/themes/tizen/tizen-black/images/page/00_toolbar_button_bg.9.png differ diff --git a/src/themes/tizen/tizen-black/images/page/00_toolbar_button_bg.9_press.png b/src/themes/tizen/tizen-black/images/page/00_toolbar_button_bg.9_press.png new file mode 100644 index 0000000..5e6d4ba Binary files /dev/null and b/src/themes/tizen/tizen-black/images/page/00_toolbar_button_bg.9_press.png differ diff --git a/src/themes/tizen/tizen-black/images/page/00_toolbar_button_ef.9.png b/src/themes/tizen/tizen-black/images/page/00_toolbar_button_ef.9.png new file mode 100644 index 0000000..c52cb9a Binary files /dev/null and b/src/themes/tizen/tizen-black/images/page/00_toolbar_button_ef.9.png differ diff --git a/src/themes/tizen/tizen-black/style.less b/src/themes/tizen/tizen-black/style.less new file mode 100644 index 0000000..a3de31a --- /dev/null +++ b/src/themes/tizen/tizen-black/style.less @@ -0,0 +1,352 @@ +/*************************************************************************** + Body +***************************************************************************/ +@color_bg: rgb(32, 35, 39); /* B011 : Main Background color */ +@color_text: rgb(249, 249, 249); /* B012 : Main font color */ + +/*************************************************************************** + Naviframe +***************************************************************************/ +@color_bar_title_text : rgba(112, 169, 238, 1); /* B042 : title text */ +@color_bar_title_button_text : rgba(58, 58, 58, 1); /* B052L4 : Title text button */ +@color_bar_title_button_text_press : rgba(59, 115, 182, 1); /* B052L5 : Title text button press */ +@color_bar_btn_press : rgba(64, 147, 247, 0.1); /* B052L1P : Title text button press bg */ +@color_bar_divider_line : rgba(91, 91, 91, 1); /* 00_divider_line.9.png */ +@color_bar_naviframe_bg : rgba(32, 35, 39, 1); +/*************************************************************************** + Tabbar +***************************************************************************/ +@color_tabbar_btn_tab_press : -webkit-linear-gradient(top, rgba(0, 0, 0,1) 0%, rgba(32, 35, 39,1) 100%); /* B0514P1 : 00_tab_press_ef.9.png */ +@color_tabbar_btn_pressed : rgba(112, 169, 238, 1); /* B052L6P */ +@color_tabbar_btn_normal : rgba(186, 186, 186, 1); /* B052L6 */ + +/*************************************************************************** + List +***************************************************************************/ +@color_list_bg: rgba(32, 35, 39, 1); /* B0211 */ +@color_list_press : rgba(87, 135, 194, 1); /* B041 */ +@color_list_border_bottom: rgba(45, 45, 45, 0.5); /* B0221 */ +@color_list_main_text_focus: rgba(215, 215, 215, 1); +@color_list_main_text_unfocus: rgba(215, 215, 215, 1); +@color_list_sub_text_default: rgba(128, 128, 128, 1); + +@color_list_divider_expand_div : rgba(0, 0, 0, 0.5); +@color_list_divider_bg : rgba(32, 35, 39, 1); /* W021L1 */ +@color_list_divider_text : rgba(112, 169, 238, 1); /* W021L2 */ + +@color_list_dialogue_bg : rgba(42, 45, 48, 1); +@color_dialogue_main_text: rgba(59, 115, 182, 1); +@color_dialogue_border_right: rgba(142, 154, 163, 1); + +@color_list_expanded_bg : rgba(220, 218, 211, 1); + +@color_list_bubble_sent_text: rgb(0, 0, 0); +@color_list_bubble_receive_text: rgb(255, 255, 255); +@color_list_bubble_sos_text: rgb(233, 73, 73); +@color_list_bubble_date_text: rgb(104, 104, 104); +@color_list_bubble_date_bg: rgba(225, 225, 225, 0); +@color_list_bubble_time_sent_text: rgb(57, 166, 215); +@color_list_bubble_time_receive_text: rgb(211, 0, 0); +@color_list_bubble_time_sos_text: rgb(211, 0, 0); +@color_list_bubble_name_text: rgb(139, 139, 139); +@color_list_bubble_help_text: rgb(154, 154, 154); +@color_list_bubble_link_text: rgb(34, 129, 157); + +@list-font-size-main: 22 * @unit_base; +@list-font-size-divider: 16 * @unit_base; // NOTE: defined in dialogue group + +@list-smallicon-size: 17 * @unit_base; +@list-li-padding-horizontal: 8 * @unit_base; + +@list-bigicon-size2: 72 * @unit_base; + +/*************************************************************************** + Shortcut Scroll +***************************************************************************/ +@color_fastscroll_rollover_bg: rgba(33, 52, 74, 1); /* B0723 : 00_fast_scroll_rollover_bg.9.png */ +@color_fastscroll_rollover_text: rgba(215, 215, 215, 1); /* B0721 : Rollover text */ +@color_fastscroll_popup_bg: rgba(59, 115, 182, 1); /* B0731 : 00_fast_scroll_popup_bg.png */ +@color_fastscroll_popup_shadow: rgba(199, 199, 199, 0.5); +@color_fastscroll_popup_text: rgba(255, 255, 255, 1); /* B0732 : Scroll popup text */ + + +/*************************************************************************** + SearchBar(forms.textinput) +***************************************************************************/ +@color_searchbar_bg : rgba(32, 35, 39, 1); +@color_searchbar_default_text : rgba(255, 255, 255, 1); /* Search default text */ +@color_searchbar_input_field_bg : rgba(60, 65, 71, 1); /* W301 : 00_search_edit_field_bg.png */ +@color_searchbar_border : rgba(153, 153, 153, 1); + + +/*************************************************************************** + Popup +***************************************************************************/ +@font_size_popup_info_style: 24 * @unit_base; +@color_popup_text_bg: rgba(42, 45, 48, 1); /* B061L1 : Popop info */ + + +/*************************************************************************** + Button(connected with other winset) +***************************************************************************/ + +@color_button_text_black: rgb(249, 249, 249); + +@color_button_EditText: rgb(249, 249, 249); +@color_button_EditTextPress: rgb(61, 61, 61); + +@color_button_text_normal: rgb(58, 58, 58); +@color_button_text_press: rgb(248, 246, 239); +@color_button_text_white: rgb(249, 249, 249); + +@color_button_normal: rgb(32, 35, 39); +@color_button_normal_webkit: -webkit-linear-gradient(top, rgb(32, 35, 39), rgb(32, 35, 39)); +@color_button_normal_moz: -moz-linear-gradient(top, rgb(235, 232, 227), rgb(234, 231, 226)); +@color_button_normal_o: -o-linear-gradient(top, rgb(235, 232, 227), rgb(234, 231, 226)); +@color_button_normal_ms: -ms-linear-gradient(top, rgb(235, 232, 227), rgb(234, 231, 226)); +@color_button_press: rgb(59, 115, 182); + +@color_button_inner: rgb(32, 35, 39); +@color_button_inner_webkit: -webkit-linear-gradient(top, rgb(32, 35, 39), rgb(32, 35, 39)); +@color_button_inner_moz: -moz-linear-gradient(top, rgb(250, 247, 242), rgb(248, 245, 240)); +@color_button_inner_o: -o-linear-gradient(top, rgb(250, 247, 242), rgb(248, 245, 240)); +@color_button_inner_ms: -ms-linear-gradient(top, rgb(250, 247, 242), rgb(248, 245, 240)); + +@button_shadow_outer: 0 0 1px 1px rgba(0, 0, 0, 1); +@button_shadow_inner: none; + +@color_button_edit: rgb(201, 88, 88); +@color_button_edit_webkit: -webkit-gradient(linear, left top, left bottom, from(rgb(201, 88, 88)), to(rgb(161, 40, 40))); +@color_button_edit_moz: -moz_linear-gradient(top, rgb(201, 88, 88), rgb(161, 40, 40)); +@color_button_inner_border: rgba(0, 0, 0, 1); +.LESSbutton_box_style{ + color: @color_button_text_normal; +} + +.LESSbutton_up_style{ + background: @color_button_normal; + background: @color_button_normal_webkit; + background: @color_button_normal_moz; + background: @color_button_normal_o; + background: @color_button_normal_ms; +} + +.LESSbutton_box_style{ + background: @color_button_normal; + background: @color_button_normal_webkit; + background: @color_button_normal_moz; + background: @color_button_normal_o; + background: @color_button_normal_ms; + border: 1px solid; + border-color: rgba(0, 0, 0, 1); + .LESSbox-shadow-line( @button_shadow_outer ); +} +.LESSbutton_inner_box_style{ + background: @color_button_inner; + background: @color_button_inner_webkit; + background: @color_button_inner_ms; + background: @color_button_inner_o; + background: @color_button_inner_moz; + .LESSbox-shadow-line( @button_shadow_inner ); +} +.LESSbutton_inner_pressstyle{ + color: @color_button_text_press; +} + +.LESSbutton_text1_style{ + font-family: @font_family; + font-weight: normal; + font-size: 1.0rem; + font-style:normal; + color: @color_button_text_black; +} + +.LESSbutton_hover_style{ + color: @color_button_text_normal; +} + +.LESSbutton_down_style{ + background: @color_button_press; + color: @color_button_text_press; +} + +.LESSbutton_edit_style{ + background: @color_button_edit; + background: @color_button_edit_webkit; + background: @color_button_edit_moz; +} + +/*************************************************************************** + contextual popup +***************************************************************************/ +@color_ctxpopup_text: rgb(255, 255, 255); +@color_ctxpopup_background: rgb(68, 68, 68); +@color_ctxpopup_border_left: rgb(45, 45, 45); +@color_ctxpopup_border_right: rgb(91, 91, 91); +@color_ctxpopup_border_top: rgb(91, 91, 91); +@color_ctxpopup_border_bottom: rgb(45, 45, 45); + +@color_ctxbutton_press: rgb(59, 115, 182); + +@color_ctxpopup_timepicker_text: rgba( 255, 255, 255, 0.7 ); +@color_ctxpopup_timepicker_text_focus: rgba( 255, 255, 255, 1 ); + + +/*************************************************************************** + Scrollview +***************************************************************************/ +@color_scrollbar: rgb(198, 196, 190); + + +/*************************************************************************** + Date Time picker +***************************************************************************/ +@color_timepicker_selector_color: rgb(59,115,182); +@font_size_datetime_main_text: 22 * @unit_base; +@font_size_datetime_sub_text: 16 * @unit_base; + +/*************************************************************************** + SegmentControl +***************************************************************************/ +@color_segmentcontrol_Seg_text : rgba(199, 199, 199, 1); /* B052L4 : Title text button */ +@color_segmentcontrol_Seg_text_pressed : rgb(59,119,150); + +/*************************************************************************** + Popup +***************************************************************************/ +@color_popup_center_progressbar_title: rgba(153, 153, 153, 1); +@color_popup_title_bg: rgba(80, 147, 182, 255); /* popup_title_bg.png */ + +@color_popup_button_bg: rgba(248, 246, 239, 1); +@color_popup_font: rgba(248, 246, 239, 1); /* maybe not use only popupwindow*/ +@color_popup_text_font: rgba(249, 249, 249, 1); + +@color_popup_buttonbg: rgb(84, 126, 153); +@color_popup_buttonbg_webkit: -webkit-gradient(linear, left top, left bottom, from(rgb(84, 126, 153)), to(rgb(69, 105, 128))); +@color_popup_buttonbg_moz: -moz-linear-gradient(top, rgb(84, 126, 153), rgb(69, 105, 128)); +@color_popup_buttonbg_ms: -ms-linear-gradient(top, rgb(84, 126, 153), rgb(69, 105, 128)); +@color_popup_buttonbg_o: -o-linear-gradient(top, rgb(84, 126, 153), rgb(69, 105, 128)); +@color_popup_buttontext: rgb(249, 249, 249); +@color_popup_buttonbg_over: rgb(94, 136, 163); + +@color_popup_buttonbg_press: rgb(67, 160, 217); +@color_popup_buttonbg_press_webkit: -webkit-gradient(linear, left top, left bottom, from(rgb(67, 160, 217)), to(rgb(56, 139, 185))); +@color_popup_buttonbg_press_moz: -moz-linear-gradient(top, rgb(67, 160, 217), rgb(56, 139, 185)); +@color_popup_buttonbg_press_ms: -ms-linear-gradient(top, rgb(67, 160, 217), rgb(56, 139, 185)); +@color_popup_buttonbg_press_o: -o-linear-gradient(top, rgb(67, 160, 217), rgb(56, 139, 185)); + +@color_popup_scroller_bg: rgba(248, 246, 239, 1); + + +@font_size_popup_basic_style_title: 24 * @unit_base; //1.1875rem; /* 38px */ +@font_size_popup_center_progressbar_title: 26 * @unit_base; //0.8125rem; /* 26px */ +@font_size_popup_text_progress_title: 42 * @unit_base; //1.3125rem; /* 42px */ +@font_size_popup_button_text: 32 * @unit_base; //1.0rem; /* 32px */ + +.LESSpopup_button_style{ +/* background: @color_popup_buttonbg; + background: @color_popup_buttonbg_webkit; + background: @color_popup_buttonbg_moz; + background: @color_popup_buttonbg_ms; + background: @color_popup_buttonbg_o; + color: @color_popup_buttontext;*/ +} + +.LESSpopup_button_hover_style{ + background: @color_popup_buttonbg_over; +} + +.LESSpopup_button_press_style{ + background: @color_popup_buttonbg_press; + background: @color_popup_buttonbg_press_webkit; + background: @color_popup_buttonbg_press_moz; + background: @color_popup_buttonbg_press_ms; + background: @color_popup_buttonbg_press_o; +} + +.LESSpopup_padding_style{ +} + +/*************************************************************************** + Tickernoti +***************************************************************************/ +@color_ticker_bg: rgb(68, 68, 68); +@color_ticker_text1: rgb(255, 255, 255); +@color_ticker_text2: rgb(255, 255, 255); +@color_ticker_btn: rgb(64, 64, 64); +@color_ticker_btn_border: rgb(50, 50, 50); + + +/*************************************************************************** + Smallpopup +***************************************************************************/ +@color_smallpopup_bg: rgb(68, 68, 68); +@color_smallpopup_text: rgb(255, 255, 255); + +/*************************************************************************** + Slider +***************************************************************************/ +@color_slider_handle_text: rgb(59, 115, 182); +@color_slider_popup_text: rgb(249, 249, 249); + + +/*************************************************************************** + Progress +***************************************************************************/ +@color_progress_bar0: rgb(0, 0, 0); +@color_progress_bar1: rgb(29, 31, 34); +@color_progress_border: rgb(29, 31, 34); +@color_progress_value0: rgb(54, 119, 195); +@color_progress_value1: rgb(29, 31, 34); + + +/*************************************************************************** + Handler +***************************************************************************/ +@color_scrollview_handler_bg : rgba(150, 150, 150, 0.5); + + +/*************************************************************************** + multimediaview +***************************************************************************/ +@color_multimediaview_bg : rgb(249, 249, 249); +@color_multimediaview_control_bg : rgba(248, 246, 239, 0.5); +@color_multimediaview_button_bg : rgb(248, 246, 239); +@color_multimediaview_timestamp_text : rgb(74, 132, 201); +@color_multimediaview_duration_text : rgb(128, 128, 128); +@color_multimediaview_bar_gray : rgb(203, 200, 197); +@color_multimediaview_bar_active : rgb(74, 132, 201); +@color_multimediaview_bar_handle : rgb(249, 249, 249); +@color_multimediaview_button_border : rgb(186, 185, 180); + +.LESSmultimediaview_bar_active_style{ + background-color : @color_multimediaview_bar_active; + background-image : -webkit-gradient(linear, left top, left bottom, from(rgb(98, 137, 217)), to(rgb(41, 91, 152))); + background-image : -moz-linear-gradient(top, rgb(98, 137, 217), rgb(41, 91, 152)); + background-image : -o-linear-gradient(top, rgb(98, 137, 217), rgb(41, 91, 152)); + background-image : -ms-linear-gradient(top, rgb(98, 137, 217), rgb(41, 91, 152)); +} + +.LESSmultimediaview_bar_handle_style{ + background-color : @color_multimediaview_bar_handle; + background-image : -webkit-gradient(linear, left top, left bottom, from(rgb(255, 255, 255)), to(rgb(230, 230, 230))); + background-image : -moz-linear-gradient(top, rgb(255, 255, 255), rgb(230, 230, 230)); + background-image : -o-linear-gradient(top, rgb(255, 255, 255), rgb(230, 230, 230)); + background-image : -ms-linear-gradient(top, rgb(255, 255, 255), rgb(230, 230, 230)); +} + + +/*************************************************************************** + tokentextarea +***************************************************************************/ +@color_tokentextarea_block_text : rgb(255, 255, 255); +@color_tokentextarea_block_bg : rgb(95, 138, 189); +@color_tokentextarea_press_bg : rgb(54, 89, 132); +@color_tokentextarea_input_text : #222222; +@color_tokentextarea_label_text : rgb(102, 102, 102); + +/*************************************************************************** + Splitview +***************************************************************************/ +@color_splitview_spliter_bar : rgb(179, 179, 179); +@color_splitview_spliter_bar_active : rgb(87, 135, 194); diff --git a/src/themes/tizen/tizen-black/theme.js b/src/themes/tizen/tizen-black/theme.js new file mode 100644 index 0000000..1a40465 --- /dev/null +++ b/src/themes/tizen/tizen-black/theme.js @@ -0,0 +1,70 @@ +(function( $, undefined ) { +//$.mobile.page.prototype.options.backBtnTheme = "s"; + +// Clear default theme for child elements +$( function ( o ) { + o.headerTheme = "s"; + o.footerTheme = "s"; +} ( $.mobile.page.prototype.options ) ); + +// clear listview +( function ( o ) { + o.theme = "s"; + o.countTheme = "s"; + o.headerTheme = "s"; + o.dividerTheme = "s"; + o.splitTheme = "s"; +} ( $.mobile.listview.prototype.options ) ); + +// Collapsible +( function ( o ) { + o.heading = o.heading + ',li'; // Add listitem as a heading + o.inset = false; + o.iconPos = "right"; // Move iconPos to right position + o.collapsedIcon = "arrow-u"; + o.expandedIcon = "arrow-d"; + o.animation = true; + o.customEventHandler = function ( isCollapse ) { + var self = this, + c = $(self).children('.ui-collapsible-content')[0]; + + function _getHeight( el ) { + var h = 0, + heading = $( el ).children('.ui-collapsible-heading')[0], + content = $( el ).children('.ui-collapsible-content')[0]; + + h += heading.clientHeight; + $( content ).children().each ( function ( idx, _el ) { + if ( $( _el ).hasClass( 'ui-collapsible' ) ) { // recursive call for nested collapsible list + h += _getHeight( _el ); + + } else { + h += _el.clientHeight; + } + } ); + return h; + } + + if ( isCollapse ) { + $( c ).data( 'max-height', _getHeight( self ) ); + } else { + if ( ! $( c ).data( 'max-height' ) ) { + $( c ).data( 'max-height', document.body.clientHeight ); + } + $( c ).css( 'max-height', $( c ).data( 'max-height' ) ); + } + }; +} ( $.mobile.collapsible.prototype.options ) ); + +//clear button theme +$.mobile.button.prototype.options.theme = "s"; +$.fn.buttonMarkup.defaults.theme = "s"; + +// Default theme swatch +$.mobile.page.prototype.options.theme = "s"; + +// Original scale of the theme +$.tizen.frameworkData.defaultViewportWidth = 360; // Fit to device-width +$.tizen.frameworkData.defaultFontSize = 22; + +})(jQuery); diff --git a/src/themes/tizen/tizen-white/style.less b/src/themes/tizen/tizen-white/style.less index 520d905..3fdddfe 100644 --- a/src/themes/tizen/tizen-white/style.less +++ b/src/themes/tizen/tizen-white/style.less @@ -12,6 +12,7 @@ @color_bar_title_button_text_press : rgba(59, 115, 182, 1); /* B052L5 : Title text button press */ @color_bar_btn_press : rgba(64, 147, 247, 0.1); /* B052L1P : Title text button press bg */ @color_bar_divider_line : rgba(192, 192, 192, 1); /* 00_divider_line.9.png */ +@color_bar_naviframe_bg : rgba(248, 246, 239, 1); /*************************************************************************** Tabbar @@ -118,7 +119,7 @@ @color_button_edit: rgb(201, 88, 88); @color_button_edit_webkit: -webkit-gradient(linear, left top, left bottom, from(rgb(201, 88, 88)), to(rgb(161, 40, 40))); @color_button_edit_moz: -moz_linear-gradient(top, rgb(201, 88, 88), rgb(161, 40, 40)); - +@color_button_inner_border: rgba(199, 197, 190, 1); .LESSbutton_box_style{ color: @color_button_text_normal; }