123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294 |
- .date-time {
- color: #808080;
- font-size: 1.2em;
- font-weight: bold;
- }
- .DistributeModal {
- display: none;
- position: fixed;
- z-index: 1000;
- left: 0;
- top: 0;
- width: 100%;
- height: 100%;
- background-color: rgba(0, 0, 0, 0.5);
- justify-content: center;
- align-items: center;
- }
- .DistributeModal-content {
- background-color: white;
- padding: 20px;
- width: 400px;
- max-width: 90%;
- border-radius: 10px;
- box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
- position: relative;
- text-align: center;
- }
- .DistributeModal-close {
- position: absolute;
- top: 10px;
- right: 15px;
- font-size: 24px;
- color: #333;
- cursor: pointer;
- }
- .DistributeModal-section {
- margin-bottom: 20px;
- padding: 15px;
- border: 1px solid #ccc;
- border-radius: 5px;
- box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
- }
- .DistributeModal-email-input-wrapper {
- display: flex;
- align-items: center;
- margin-bottom: 10px;
- }
- .DistributeModal-email-input {
- flex: 1;
- padding: 10px;
- border: 1px solid #ccc;
- border-radius: 15px;
- background-color: #f5f5f5;
- box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
- font-size: 16px;
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
- }
- .DistributeModal-remove-email-btn {
- background-color: #ff3b30;
- color: white;
- border: none;
- border-radius: 50%;
- width: 25px;
- height: 25px;
- display: flex;
- justify-content: center;
- align-items: center;
- cursor: pointer;
- flex-shrink: 0;
- }
- .DistributeModal-remove-email-btn:hover {
- background-color: #d32f2f;
- }
- .DistributeModal-email-button-wrapper {
- display: flex;
- justify-content: space-between;
- gap: 5px;
- margin-bottom: 10px;
- }
- .DistributeModal-button {
- background-color: #007aff;
- color: white;
- padding: 10px;
- border: none;
- border-radius: 5px;
- cursor: pointer;
- margin-top: 10px;
- flex: 1;
- }
- .DistributeModal-button:hover {
- background-color: #0056b3;
- }
- .DistributeModal-checkbox-wrapper {
- display: flex;
- justify-content: space-between;
- margin-top: 10px;
- }
- .DistributeModal-checkbox-label {
- display: flex;
- align-items: center;
- font-size: 16px;
- color: #333;
- cursor: pointer;
- }
- .DistributeModal-checkbox {
- appearance: none;
- -webkit-appearance: none;
- position: absolute;
- opacity: 0;
- }
- .DistributeModal-checkbox-custom {
- width: 40px;
- height: 20px;
- background-color: #ccc;
- border-radius: 10px;
- position: relative;
- transition: background-color 0.3s;
- }
- .DistributeModal-checkbox:checked + .DistributeModal-checkbox-custom {
- background-color: #007aff;
- }
- .DistributeModal-checkbox-custom::before {
- content: "";
- position: absolute;
- top: 2px;
- left: 2px;
- width: 16px;
- height: 16px;
- background-color: white;
- border-radius: 50%;
- transition: transform 0.3s;
- }
- .DistributeModal-checkbox:checked + .DistributeModal-checkbox-custom::before {
- transform: translateX(20px);
- }
- .DistributeModal-user-button-wrapper {
- display: flex;
- justify-content: space-between;
- gap: 10px;
- margin-bottom: 10px;
- }
- .distributeUser-select {
- flex: 1;
- max-width: 80%;
- padding: 5px;
- border-radius: 10px;
- background-color: #f5f5f5;
- border: 1px solid #ccc;
- font-size: 14px;
- -webkit-appearance: none;
- appearance: none;
- margin-right: 10px;
-
- }
- .distributeUser-select-wrapper {
- display: flex;
- align-items: center;
- margin-bottom: 10px;
- }
- .distributeUser-select-wrapper::after {
- content: '▼';
- position: absolute;
- right: 10px;
- top: 50%;
- transform: translateY(-50%);
- pointer-events: none;
- }
- .distributionHistory-modal {
- display: none;
- position: fixed;
- z-index: 999;
- left: 0;
- top: 0;
- width: 100%;
- height: 100%;
- background-color: rgba(0, 0, 0, 0.5);
- }
- .distributionHistory-modal-content {
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- background-color: #ffffff;
- border-radius: 12px;
- box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
- width: 90%;
- max-width: 500px;
- padding: 20px;
- border: 4px solid #02556e;
- }
- .distributionHistory-modal-close {
- color: #888;
- float: right;
- font-size: 24px;
- font-weight: bold;
- cursor: pointer;
- }
- .distributionHistory-modal h2 {
- margin: 0;
- font-size: 20px;
- font-weight: bold;
- text-align: center;
- }
- .distributionHistory-user-content,
- .distributionHistory-email-content {
- margin-top: 15px;
- margin-bottom: 15px;
- border: 1px solid #02556e;
- border-radius: 8px;
- padding: 10px;
- background-color: #ffffff;
- }
- .distributionHistoryModal-record {
- padding: 10px;
- border-bottom: 1px solid #eee9e9;
- }
- .distributionHistoryModal-no-record {
- text-align: center;
- color: #999;
- padding: 10px;
- }
|